* {
    padding: 0px;
    margin: 0px;
    font-size: 15px;
}

ul,
ol {
    list-style: none;
}

input,
textarea {
    outline: none;
    border: none;
}

a {
    text-decoration: none;
    color: #333;
}

table {
    width: 100% !important;
    border-collapse: collapse;/* 为table设置这个属性 */
    border-radius: 0.15rem ;
    overflow: hidden;
    box-sizing: border-box ;
}



.public {
    width: 100%;
    max-width: 17rem ;
    margin: 0 auto;
    height: 100%;
}

/* 导航  */
.nav {
    width: 100%;
    height: 0.9rem ;
    background: #FFFFFF;
    box-shadow: 0px 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.16);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
}

.nav .out {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .out .logo {
    height: 0.44rem ;
    display: block;
}

.nav .out .logo img {
    display: block;
    height: 100%;
}

.nav .out ul {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav .out ul li {
    height: 100%;
    margin-left: 1rem ;
    position: relative;
}

.nav .out ul li:first-child {
    margin-left: 0px;
}

.nav .out ul li .title {
    display: flex;
    align-items: center;
    height: 100%;
    font-weight: 400;
    font-size: 0.18rem ;
    color: #666666;
    position: relative;
    justify-content: center;
}

.nav .out ul li .title::after {
    width: 0px;
    height: 0.04rem ;
    background: #1656BF;
    content: '';
    position: absolute;
    bottom: 0px;
    transition: 0.5s all;
}

.nav .out ul li:hover .title,
.nav .out ul li.on .title {
    color: #1656BF;
}

.nav .out ul li:hover .title::after,
.nav .out ul li.on .title::after {
    width: 0.7rem ;
}




/* banner */
.banner img {
    width: 100%;
    display: block;
}

/* public_title */
.public_title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 1.06rem 0px 0.4rem 0px;
}

.public_title h5 {
    font-weight: bold;
    font-size: 0.42rem ;
    color: #111111;
}

.public_title .button_list {
    display: flex;
    align-items: center;
    max-width: 100%;
}

.public_title .button_list .list_tiem {
    width: 2.16rem;
    height: 0.52rem ;
    background: #FFFFFF;
    border-radius: 0.06rem ;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.01rem solid #4E648A;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 0.2rem ;
    color: #666666;
    margin-right: 1.12rem ;
}

.public_title .button_list .list_tiem:last-child {
    margin-right: 0px;
}

.public_title .button_list .list_tiem.on {
    background: linear-gradient(180deg, #3B81DA 0%, #2D69CB 100%);
    color: #FFF;
    border: none ;
}

/* 产品推荐 */

.Recommendation .out {
    position: relative;
}

.Recommendation .out .swiper {
    overflow: hidden;
    padding: 0.2rem ;
    box-sizing: border-box ;
    display: none ;
}

.Recommendation .out .swiper.Recommendation_swiper{
    display: block ;
}

.Recommendation .out .swiper-button-next:after, .Recommendation .out .swiper-button-prev:after {
    color: #333 ;
    font-size: 0.24rem ;
    font-weight: bold ;
    display: block ;
}

.Recommendation .out .swiper-button-next, .Recommendation .out .swiper-button-prev {
    opacity: 0.35;
}

.Recommendation .out .swiper-button-next:hover, .Recommendation .out .swiper-button-prev:hover{
    opacity: 1 ;
}

.Recommendation .out .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    width: 24%;
    margin-right: 1.25%;
}

.Recommendation .out .swiper-slide:last-child {
    margin-right: 0px ;
}

.Recommendation .out .swiper-slide .box {
    width: 100% ;
    margin-bottom: 0.13rem ;
    transition: 0.7s ease;
    border-radius: 0.06rem ;
}

.Recommendation .out .swiper-slide .box:hover {
    box-shadow: 0 0 0.13rem  rgba(0, 0, 0, 0.2);
}

.Recommendation .out .swiper-slide .box .img {
    width: 100%;
    display: block;
    height: 2.7rem ;
    transition: 0.5s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.Recommendation .out .swiper-slide .box .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: 0.5s ease;
}



.Recommendation .out .swiper-slide .box:hover .img img {
    transform: scale(1.2);
}

.Recommendation {
    overflow: hidden;
}

.Recommendation .swiper {
    overflow: visible;
}

.Recommendation .out .swiper-slide .box .text {
    width: 100%;
    margin-top: 0.28rem ;
    display: flex;
    justify-content: center;
}

.Recommendation .out .swiper-slide .box .text .txt {
    width: max-content;
    max-width: 100%;
    padding: 8% 6% ;
    box-sizing: border-box;
}

.Recommendation .out .swiper-slide .box .text h5 {
    font-weight: 400;
    font-size: 0.2rem ;
    color: #333333;
    margin-bottom: 0.1rem ;
}

.Recommendation .out .swiper-slide .box .text p {
    font-weight: 400;
    font-size: 0.17rem ;
    color: #666666;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 2em;
}

.Recommendation .out .swiper-slide .box:hover .text h5 {
    color: #0947AD;
}

/* 应用领域 */
.Applications .public_title h5 {
    margin-bottom: 0.42rem ;

}

.Applications .public_title {
    margin-bottom: 0.51rem ;
    margin-top: 0.7rem ;
}

.Applications .swiper-slide {
    width: 17%;
    background-size: cover !important;
    height: 5.79rem ;
    cursor: pointer;
    overflow: hidden;
    transition: 0.6s ease;
}

.Applications .swiper-slide .title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.Applications .swiper-slide .title h5 {
    font-weight: 400;
    font-size: 0.3rem ;
    color: #FFFFFF;
    margin-bottom:0.17rem ;
    transition: 0.6s ease;
}

.Applications .swiper-slide .title i {
    width: 0.54rem ;
    height: 0.04rem ;
    background: #1656BF;
    display: block;
    transition: 0.6s ease;
}

.Applications .swiper-slide.on {
    width: 49%;
}

.Applications .swiper-slide .box {
    width: 8.55rem ;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
    padding: 0px 0.81rem;
    box-sizing: border-box;
    padding-bottom: 0.81rem ;
    box-sizing: border-box;
    position: absolute;
    top: 0px;
    left: 0px;
    flex: none;
}

.Applications .swiper-slide .box h5 {
    font-weight: 400;
    font-size: 0.3rem ;
    color: #FFFFFF;
    margin-bottom: 0.31rem ;
    transform: translateY(100%);
    opacity: 0;
    transition: 0.8s ease;
}

.Applications .swiper-slide .box p {
    font-weight: 400;
    font-size: 0.15rem ;
    color: #FFFFFF;
    letter-spacing: 0.01rem ;
    line-height: 1.6em;
    transform: translateY(100%);
    opacity: 0;
    transition: 0.8s ease;
}

.Applications .swiper-slide.on .title {
    transform: translateY(100%);
}

.public_link {
    width: 1.55rem ;
    height: 0.48rem ;
     background: linear-gradient(180deg, #3B81DA 0%, #2D69CB 100%);
    border-radius: 0.24rem 0px 0.24rem 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 0.18rem;
    color: #FFFFFF;
    margin-top: 0.39rem;
    transform: translateY(100%);
    opacity: 0;
    transition: 0.8s ease;
}

.public_link img {
    display: block;
    margin-left: 0.16rem;
    height: 13.33px;
}

.Applications .swiper-button-next,
.Applications .swiper-button-prev {
    width: 0.56rem;
    height: 0.56rem;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    position: relative;
    right: 0px;
    left: 0px;
    margin: 0px 0.15rem;
}

.Applications .swiper-button-next::after,
.Applications .swiper-button-prev::after {
    font-size: 0.25rem ;
    color: #FFF;
}

.Applications .swiper-button-next:hover,
.Applications .swiper-button-prev:hover {
    background: #0057A2;
}

.Applications .button_box {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0.29rem;
    width: 100%;
}

.Applications .swiper-slide.on .public_link,
.Applications .swiper-slide.on .box h5,
.Applications .swiper-slide.on .box p {
    transform: translateX(0%);
    opacity: 1;
}

.Applications .swiper-slide.on .title h5,
.Applications .swiper-slide.on .title i {
    transform: translateY(100%);
    opacity: 0;
}

/* 新闻中心 */
.News {
    width: 100%;
}

.News .swiper {
    display: none;
}

.News .swiper:nth-child(1) {
    display: block;
}

.News .swiper-slide {
    width: 24%;
    margin-right: 1.25%;
    background: #F7F7F7;
    border-radius: 0.09rem;
    overflow: hidden;
}

.News .swiper-slide:last-child {
    margin-right: 0px;
}

.News .swiper-slide .img {
    height: 2.48rem ;
    width: 100%;
    overflow: hidden;
}

.News .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.News .swiper-slide .txt {
    padding: 0.3rem 0.23rem ;
    box-sizing: border-box;
}

.News .swiper-slide .txt h5 {
    font-weight: 500;
    font-size: 0.18rem ;
    color: #333333;
    margin-bottom: 0.36rem ;
    font-style: normal;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.News .swiper-slide .txt .but_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.News .swiper-slide .txt .but_box span {
    font-weight: 400;
    font-size: 0.15rem;
    color: #888888;
}

.News .swiper-slide .txt .but_box .jiantou {
    display: flex;
    align-items: center;
    justify-content: center;


}

.News .swiper-slide .txt .but_box .jiantou span {
    font-weight: 400;
    font-size: 0.15rem;
    color: #999999;
}

.News .swiper-slide .txt .but_box .jiantou img {
    height: 0.1rem;
    display: block;
    margin-left: 0.0rem;
}

.News .swiper-slide:hover .img img {
    transform: scale(1.2);
}

.News .swiper-slide:hover .txt h5 {
    color: #1656BF;
}

.News .swiper-slide:hover .txt .but_box .jiantou span {
    color: #1656BF;
}

.News .swiper-slide:hover .txt .but_box .jiantou img {
    content: url(../images/hei_jiantou2.png);
    display: block;
}

.News .link , .Applications .link {
    width: 1.55rem;
    height: 0.48rem ;
     background: linear-gradient(180deg, #3B81DA 0%, #2D69CB 100%);
    border-radius: 0.24rem 0px 0.24rem  0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.18rem;
    color: #FFFFFF;
    margin: 0.41rem auto 0.98rem auto;
}

.News .link img , .Applications .link img {
    display: block;
    height: 0.14rem ;
    margin-left: 0.15rem ;
}

/* 关于我们 */
.About {
    width: 100%;
    background: url(../images/Auto.jpg) no-repeat center;
    background-size: cover;
    padding: 2.15rem 0px 2.02rem 5.5%;
    box-sizing: border-box;
    overflow: hidden;
}

.About .out {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.About .out .left {
    width: 4.12rem ;
    height: 4.12rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.About .out .left .box {
    width: 1.9rem  ;
    height: 1.9rem;
    background: linear-gradient(88deg, rgba(255, 255, 255, 0.77) 0%, #FFFFFF 100%);
    border-radius: 0.08rem ;
    opacity: 0.75;
    margin-bottom: 0.32rem ;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.About .out .left .box .Numbers {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.1rem ;
}

.About .out .left .box .Numbers b {
    font-weight: bold;
    font-size: 0.55rem ;
    color: #1656BF;
    margin-right: 0.05rem ;
}

.About .out .left .box .Numbers span {
    font-weight: 400;
    font-size: 0.26rem ;
    color: #095B9A;
    display: block;
}

.About .out .left .box p {
    font-weight: 500;
    font-size: 0.18rem ;
    color: #333333;
}

.About .out .right {
    width: 10.83rem;
    height: 5.02rem;
    background: linear-gradient(88deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.84) 100%);
    border-radius: 0.08rem  0px 0px 0.08rem ;
    padding: 3% 6% 3% 5.5%;
    box-sizing: border-box;
}

.About .out .right h5 {
    font-weight: bold;
    font-size: 0.4rem;
    color: #1656BF;
}

.About .out .right i {
    width: 0.92rem ;
    height: 0.04rem ;
    background: #1656BF;
    border-radius: 0px 0px 0px 0px;
    display: block;
    margin-top: 0.4rem ;
    margin-bottom: 0.54rem ;
}

.About .out .right span {
    font-weight: 400;
    font-size: 0.22rem ;
    color: #333333;
    display: block;
    margin-bottom: 0.4rem ;
}

.About .out .right p {
    font-weight: 400;
    font-size: 0.18rem ;
    color: #333333;
    line-height: 1.6em;
    letter-spacing: 0.01rem;
}

.About .out .right a {
    width: 1.43rem ;
    height: 0.42rem ;
    border-radius: 0.26rem;
    border: 0.01rem solid #0947AD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.16rem ;
    color: #1656BF;
    margin-top: 0.4rem ;
}

.About .out .right a img {
    display: block;
    height: 0.11rem ;
    margin-left: 0.1rem ;
}

/* 底部 */
.Footer {
    width: 100%;
    /* background: #465F88; */
    background: #1A4CAB;
    box-shadow: 0px -0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 0px 0px;
    padding: 0.67rem 0px;
    box-sizing: border-box;
}

.Footer .out {
    display: flex;
    align-items: end;
}

.Footer .out .left {
    width: 4.55rem;
    margin-right: 0.93rem;
    flex: none ;
}

.Footer .out .left .logo {
    height: 0.5146rem ;
}

.Footer .out .left .logo img {
    height: 100%;
    display: block;
}

.Footer .out .left i {
    width: 1.55rem ;
    height: 0.01rem ;
    background: #FFF;
    opacity: 0.55;
    display: block;
    margin: 0.4rem 0px 0.26rem  0px;
}

.Footer .out .left .box span {
    font-weight: 400;
    font-size: 0.16rem ;
    color: #EEEEEE;
    margin-bottom: 0.27rem ;
    display: block;
}

.Footer .out .left .box span:last-child {
    margin-bottom: 0px;
}

.Footer .out .right {
    display: flex;
    justify-content: space-between ;
    width: 100% ;
}

.Footer .out .right .box {
    /* margin-right: 181px; */
}

.Footer .out .right .box:last-child {
    margin-right: 0px;
}

.Footer .out .right .box .title {
    font-weight: 400;
    font-size: 0.2rem ;
    color: #FFFFFF;
    margin-bottom: 0.49rem ;
    display: block;
}

.Footer .out .right .box .item_nav {
    display: block;
    font-weight: 400;
    font-size: 0.16rem ;
    color: #F1F1F1;
    margin-bottom: 0.43rem ;
}

.Footer .out .right .box .item_nav:last-child {
    margin-bottom: 0px;
}

.Record_n_varchar {
    width: 100%;
    height: 0.6rem ;
    border-top: 0.01rem solid #b5b5b57a;
    /* background: #465F88; */
    background: #1A4CAB;
}

.Record_n_varchar .out {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.Record_n_varchar .out a {
    font-weight: 400;
    font-size: 0.14rem ;
    color: #CCCCCC;
}

.Record_n_varchar .out a:first-child {
    margin-right: 0.24rem ;
}

.Record_n_varchar .out a:last-child {
    position: absolute;
    right: 0px;
}

/* News_page */
.News_page {
    width: 100%;
    margin-bottom: 0.7rem ;
}

.News_page .News_out_1 {
    width: 100%;
    background: #FFF;
    border-radius: 0.2rem ;
    box-shadow: 0px 0px 0.1rem 0.01rem #0000002d;
    height: 4.88rem ;
    overflow: hidden;
    margin-top: 1rem ;
}

.News_page .News_out_1 .swiper {
    height: 100%;
}

.News_page .swiper-slide {
    width: 100%;
}

.News_page .swiper-slide a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.News_page .swiper-slide .left {
    width: 50%;
    padding: 0px 1.03rem  0px 0.5rem ;
    box-sizing: border-box;
    transform: translateX(-100%);
    transition: 0.6s ease;
}

.News_page .swiper-slide .left h5 {
    font-weight: 500;
    font-size: 0.34rem ;
    color: #111111;
    margin-bottom: 0.4rem ;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
}

.News_page .swiper-slide .left p {
    font-weight: 400;
    font-size: 0.18rem ;
    color: #666666;
    letter-spacing: 0.01rem;
    line-height: 1.6em;
}

.News_page .swiper-slide .left span {
    width: 1.73rem ;
    height: 0.56rem ;
    background: #1656BF;
    box-shadow: 0px 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.08);
    border-radius: 0.41rem ;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.18rem ;
    margin-top: 0.63rem ;
}

.News_page .swiper-slide .right {
    width: 50%;
    height: 100%;
    transform: translateX(100%);
    transition: 0.6s ease;
}

.News_page .swiper-slide .right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.News_page .swiper-pagination {
    display: flex;
    justify-content: left;
    left: 0.58rem ;
    bottom: 0.4rem ;
}

.News_page .swiper-pagination .swiper-pagination-bullet {
    width: 0.12rem ;
    height: 0.12rem ;
    border: 0.02rem solid #CCCCCC;
    border-radius: 50%;
    background: none;
    opacity: 1;
    margin-right: 0.19rem ;
}

.News_page .swiper-pagination .swiper-pagination-bullet-active {
    border: 0.02rem solid #1656BF;
}

.News_page .swiper-slide-active .right,
.News_page .swiper-slide-active .left {
    transform: translateX(0px);
}

.News_page .out {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.2rem ;
}

.News_page .out .box {
    width: 32%;
    margin-right: 2%;
    padding-top: 0.37rem ;
    border-top: 0.02rem  solid #E7E7E7;
    position: relative;
    margin-bottom: 0.6rem ;
}


.News_page .out .box:nth-child(3n) {
    margin-right: 0px;
}

.News_page .out .box .img {
    width: 100%;
    height: 2.86rem ;
    overflow: hidden;
}

.News_page .out .box .img img {
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.5s ease;
    object-fit: cover;
}

.News_page .out .box .txt {
    padding: 0.31rem 0.24rem 0px 0.24rem ;
    box-sizing: border-box;
}

.News_page .out .box .txt h5 {
    font-weight: bold;
    font-size: 0.23rem ;
    color: #333333;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
}

.News_page .out .box .txt .tiem_box {
    margin-top: 0.7rem ;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.News_page .out .box .txt .tiem_box span {
    font-weight: 400;
    font-size: 0.18rem;
    color: #666666;
    margin-right: 0.16rem ;
    display: flex;
    align-items: center;
    justify-content: center;
}

.News_page .out .box .txt .tiem_box img {
    display: block;
    height: 0.11rem; 
    margin-left: 0.16rem ;
}

.News_page .out .box .txt .tiem_box p {
    display: flex;
    align-items: end;
    font-weight: 400;
    font-size: 0.19rem ;
    color: #666666;
}

.News_page .out .box .txt .tiem_box b {
    font-weight: bold;
    font-size: 0.28rem ;
    color: #333333;
    margin-right: 0.07rem ;
}

.News_page .out .box:hover .img img {
    transform: scale(1.1);
}

.News_page .out .box::after {
    position: absolute;
    left: 0px;
    top: 0px;
    background: #095B9A;
    content: '';
    display: block;
    transition: 0.5s ease;
    width: 0%;
    height: 0.01rem ;
}

.News_page .out .box:hover:after {
    width: 100%;
}


/* * 页码 */
.public_page {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.67rem ;
    width: 100% ;
    /*margin-bottom: 100px;*/
}

.News_page .public_page {
    margin-top: 0px;
}

.public_page span {
    width: 0.49rem ;
    height: 0.41rem ;
    background: #EEEEEE;
    border-radius: 0.02rem ;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.16rem ;
    color: #555555;
    margin-right: 0.1rem ;
}

.public_page .Next_page_Previous_page {
    width: 0.66rem ;
    height: 0.41rem ;
    background: #EEEEEE;
    border-radius: 0.02rem ;
    font-weight: 400;
    font-size: 0.16rem ;
    color: #555555;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0.1rem;
}

.public_page .page {
    width: 0.41rem ;
    height: 0.41rem ;
    background: #EEEEEE;
    border-radius: 0.02rem ;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0.1rem ;
}

.public_page .Next_page_Previous_page:hover {
    background: #1656BF;
    color: #FFF;
}

.public_page .page:hover,
.public_page .page.on {
    background: #1656BF;
    color: #FFF;
}

/* Tap栏 */
.public_Tap {
    width: 100%;
    border-bottom: 0.01rem solid #D0D0D0;
    box-sizing: border-box;
}

.public_Tap .out {
    display: flex;
    justify-content: left;
    align-items: center;
    background: #FFF;
    height: 1rem ;
}

.public_Tap .out a {
    font-weight: 400;
    font-size: 0.24rem;
    color: #555555;
    margin-right: 1.5rem ;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.public_Tap .out a:last-child {
    margin-right: 0px;
}

.public_Tap .out a::after {
    width: 0px;
    height: 0.04rem ;
    background: #1656BF ;
    display: block;
    content: ' ';
    position: absolute;
    bottom: 0px;
    transition: 0.5s ease;
}

.public_Tap .out a:hover::after,
.public_Tap .out a.on::after {
    width: 1.5rem ;
}

.public_Tap .out a:hover,
.public_Tap .out a.on {
    color: #1656BF ;
}

/* 联系我们 */
.Contact_Page {
    margin: 0.5rem 0px 1rem 0px;
}

.Contact_Page .out {
    margin-top: 0.56rem;
    display: flex;
    justify-content: center;
}

.Contact_Page .out .box {
    width: calc(100% / 4);
    border: 0.01rem solid #DDDDDD;
    height: 3.02rem ;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Contact_Page .out .box .img {
    width: 0.78rem ;
    height: 0.78rem ;
    margin-bottom: 0.26rem ;
}

.Contact_Page .out .box .img img {
    width: 100%;
    height: 100%;
    display: block;
}

.Contact_Page .out .box h5 {
    font-weight: 500;
    font-size: 0.22rem ;
    color: #333333;
}

.Contact_Page .out .box i {
    display: block;
    margin: 0.22rem 0px;
    width: 0.39rem ;
    height: 0.04rem ;
    background: #2D69CB;
}

.Contact_Page .out .box span {
    font-weight: 400;
    font-size: 0.18rem ;
    color: #888888;
    text-align: center;
}

.Contact_Page .out .wei_box .img {
    width: 1.21rem ;
    height: 1.21rem ;
    margin-bottom: 0px;
}

.Characteristics_and_advantages {
    width: 100%;
    margin-top: 0.3rem ;
    display: flex;
    justify-content: left;
}

.Characteristics_and_advantages h5 {
    font-weight: 500;
    font-size: 0.2rem ;
    color: #333333;
    margin-bottom: 0.15rem ;
}

.Characteristics_and_advantages .Char_box {
    width: 50%;
}

.Characteristics_and_advantages .Char_list_item {
    display: flex;
    align-items: center;
    margin-bottom: 0.15rem ;
}

.Characteristics_and_advantages .Char_list_item i {
    width: 0.07rem ;
    height: 0.07rem ;
    background: #1656BF;
    margin-right: 0.09rem ;
    border-radius: 50%;
    display: block;
}

.Characteristics_and_advantages .Char_list_item span {
    font-weight: 400;
    font-size: 0.18rem ;
    color: #666666;
}


/* 在线联系 */

.Feedback {
    width: 100%;
    background: #F7F7F7;
    padding-top: 0.7rem ;
    padding-bottom: 0.97rem ;
    box-sizing: border-box;
}

.Feedback .out {
    width: 100%;
}

.Feedback .out .title {
    display: flex;
    align-items: center;
    margin-bottom: 0.52rem ;
}

.Feedback .out .title h5 {
    font-weight: 500;
    font-size: 0.36rem ;
    color: #1656BF;
}

.Feedback .out .title i {
    font-weight: 500;
    font-size: 0.16rem ;
    color: #666666;
    display: block;
    margin: 0px 0.2rem ;
}

.Feedback .out .title span {
    font-weight: 400;
    font-size: 0.17rem ;
    color: #666666;
    display: block;
}

.Feedback .out form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.Feedback .out input {
    width: 48%;
    height: 0.46rem ;
    background: #FFFFFF;
    border-radius: 0.04rem ;
    border: 0.01rem  solid #EEEEEE;
    font-weight: 400;
    font-size: 0.14rem ;
    color: #666666;
    padding: 0px 0.12rem ;
    box-sizing: border-box;
    margin-bottom: 0.4rem;
}

.Feedback .out textarea {
    width: 100%;
    height: 2.14rem;
    border: 0.01rem solid #EEEEEE;
    font-weight: 400;
    font-size: 0.14rem;
    color: #666666;
    padding: 0.18rem 0.21rem 0.18rem  0.21rem ;
    box-sizing: border-box;
}

.Feedback .out button {
    width: 4.77rem ;
    height: 0.67rem;
    background: #1656BF;
    border-radius: 0.33rem ;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.22rem ;
    color: #FFFFFF;

    border: none;
    margin: 0 auto;
    margin-top: 0.95rem;

}

.CAPTCHA {
    width: 40%;
    display: flex;
    align-items: center;
    margin-top: 0.3rem ;
}

.CAPTCHA input {
    margin-bottom: 0px !important;
    margin-right: 0.1rem !important;
}

.CAPTCHA img {
    width: 1.2rem ;
    height: 0.48rem ;
    display: block;
}

.button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* public_title_page */
.public_title_page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0.4rem ;
    margin-bottom: 0.5rem ;
}

.public_title_page h5 {
    font-weight: 500;
    font-size: 0.42rem ;
    color: #111111;
    margin-bottom: 0.2rem ;
}

.public_title_page span {
    font-weight: 400;
    font-size: 0.18rem ;
    color: #666666;
    text-transform: uppercase;
}

/* 加入我们 */
.Partner {
    width: 100%;
    margin-bottom: 0.96rem ;
    overflow: hidden;
}

.Partner .out {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Partner .out .left {
    width: 44%;
}

.Partner .out .left h5 {
    font-weight: bold;
    font-size: 0.4rem ;
    color: #333333;
}

.Partner .out .left i {
    width: 100px;
    height: 0.05rem;
    background: #1656BF;
    display: block;
    margin-top: 0.28rem ;
    margin-bottom: 0.38rem ;
}

.Partner .out .left p {
    font-weight: 400;
    font-size: 0.18rem ;
    color: #333333;
    line-height: 1.7em;
    letter-spacing: 0.01rem ;
    margin-bottom: 0.27rem ;
}

.Partner .out .left a {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 0.18rem ;
    color: #FFFFFF;
    justify-content: center;
    width: max-content ;
    padding: 0px 0.2rem ;
    height: 0.41rem ;
    background: #1656BF;
    border-radius: 0.21rem ;
    box-sizing: border-box ;
}

.Partner .out .left a img {
    display: block;
    margin-left: 0.11rem ;
    display: block;
}

.Partner .out .right {
    width: 48%;
}

.Partner .out .right img {
    width: 100%;
    display: block;
}

/* 常见问题 */
.Service_1 {
    margin-bottom: 1rem ;
}

.Service_1 .out {
    width: 100%;
}

.Service_1 .out .box {
    background: #FFFFFF;
}

.Service_1 .out .box .text {
    width: 100%;
    padding: 0.3rem 0.2rem ;
    box-sizing: border-box;
    background: #eee;
    margin-bottom: 0.1rem ;
    display: none;
}

.Service_1 .out .box .text p {
    font-size: 0.16rem ;
    color: #333;
    line-height: 1.7em;
    letter-spacing: 0.01rem ;
}

.Service_1 .out .box a {
    width: 100%;
    height: 0.9rem ;
    padding: 0px 5%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Service_1 .out .box a span {
    width: 70%;
    font-weight: 400;
    font-size: 0.24rem ;
    color: #333333;
}

.Service_1 .out .box a img {
    width: 0.28rem ;
    height: 0.28rem ;
    display: block;
}

.Service_1 .out .box:nth-child(2n) {
    background: #F5F5F5;
}

/* 行业应用 */
.Application {
    margin: 0.1rem  0px;
    overflow: hidden;
}

.Application .out .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.81rem ;
    position: relative;

}

.Application .out .box::after {
    background: linear-gradient(150deg, #FFFFFF 50%, #ECEDEE 100%);
    /* background-size: 50px ; */
    position: absolute;
    z-index: -1;
    top: -0.81rem;
    left: 6%;
    width: 100%;
    height: 100%;
    content: ""
}


.Application .out .box:nth-child(2n) {
    flex-direction: row-reverse;
}

.Application .out .box:nth-child(2n)::after {
    left: 6%;
    top: 0.81rem ;
}


.Application .out .box .left {
    width: 45%;
}

.Application .out .box .left img {
    width: 100%;
    display: block;
    height: 24vw;
    object-fit: cover;
}

.Application .out .box .right {
    width: 48%;
}

.Application .out .box .right h5 {
    font-weight: 500;
    font-size: 0.42rem ;
    color: #1656BF;
}

.Application .out .box .right i {
    width: 0.92rem ;
    height: 0.04rem ;
    background: #1656BF;
    margin: 0.4rem  0px 0.71rem  0px;
    display: block;
}

.Application .out .box .right p {
    font-weight: 400;
    font-size: 0.18rem ;
    color: #333333;
    line-height: 1.7em;
    letter-spacing: 0.01rem ;
}


/* 关于我们页面 */
.About_page {
    width: 100%;
    margin: 0.98rem 0px 0.81rem  0px;
    overflow: hidden;
}

.About_page .out {
    display: flex;
    justify-content: space-between;
}

.About_page .out .left {
    width: 50%;
}

.About_page .out .left h5 {
    font-weight: 500;
    font-size: 0.42rem ;
    color: #111111;
}

.About_page .out .left i {
    width: 0.92rem;
    height: 0.04rem ;
    background: #0057A2;
    display: block;
    margin: 0.4rem 0px 0.54rem  0px;
}

.About_page .out .left span {
    font-weight: 400;
    font-size: 0.26rem ;
    color: #333333;
    display: block;
    margin-bottom: 0.4rem ;
    color: #1656BF ;
}

.About_page .out .left p {
    font-weight: 400;
    font-size: 0.2rem;
    color: #333333;
    line-height: 1.7em;
    letter-spacing: 0.01rem ;
}

.About_page .out .right {
    width: 48%;
}

.About_page .out .right img {
    width: 100%;
    display: block;
}

.Culture {
    width: 100%;
    margin-bottom: 1rem ;
    background: #eeeeee3d;
    padding: 0.9rem  0px;
    box-sizing: border-box;
    overflow: hidden;
}

.Culture .out {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.Culture .out .left {
    width: 48%;
}

.Culture .out .right {
    width: 48%;
}

.Culture .out .right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.Culture .out .left .title {
    margin-bottom: 0.4rem ;
}

.Culture .out .left .title h5 {
    font-weight: 500;
    font-size: 0.42rem ;
    color: #111111;
    /* margin-bottom: 0.2rem ; */
}

.Culture .out .left .title i {
    width: 0.92rem;
    height: 0.04rem;
    background: #0057A2;
    display: block;
    margin: 0.4rem 0px 0.54rem 0px;
}

.Culture .out .left .title span {
    font-weight: 400;
    font-size: 0.18rem ;
    color: #666666;
    text-transform: uppercase;
}

.Culture .out .left .text_item {
    display: flex;
    padding: 0.3rem  0px;
    border-top: 0.01rem  solid #9999992e;
    position: relative;
}

.Culture .out .left .text_item::after {
    width: 0%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: #004098;
    content: '';
    height: 0.01rem ;
    transition: 0.5s ease;
}

.Culture .out .left .text_item:hover::after {
    width: 100%;
}

.Culture .out .left .text_item h5 {
    flex: none;
    width: 1rem ;
    overflow: hidden;
    padding-right: 0.06rem ;
    font-weight: bold;
    color: #333333;
    line-height: 1;
    font-size: 0.28rem ;
    /* color: #1656BF ; */
}

.Culture .out .left .text_item .txt {
    width: 100%;

}

.Culture .out .left .text_item .txt p {
    color: #777777;
    font-size: 0.2rem ;
    letter-spacing: 0.01rem ;
    line-height: 1.5em;
    margin-bottom: 0.1rem ;
}


/* 发展历程 */
.development {
    margin-top: 1.1rem ;
}

.development .out {
    margin-top: 0.84rem ;
}

.development .development_swiper {
    margin-bottom: 0.71rem ;
}

.development .development_swiper .swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.development .development_swiper .swiper-slide .box {
    display: flex;
    justify-content: space-between;
    width: 67%;
}

.development .development_swiper .swiper-slide h5 {
    font-weight: 500;
    font-size: 1.67rem ;
    color: #555555;
}

.development .development_swiper .swiper-slide .box .text {
    width: 32%;
}

.development .development_swiper .swiper-slide .box p {
    font-weight: 400;
    font-size: 0.2rem ;
    color: #333333;
    line-height: 1.5em;
    letter-spacing: 0.01rem ;
    margin-bottom: 0.45rem ;
    position: relative;
}

.development .development_swiper .swiper-slide .box p::after {
    width: 0.13rem ;
    height: 0.13rem ;
    background: #004098;
    border-radius: 50%;
    display: block;
    content: "";
    position: absolute;
    left: -0.26rem ;
    top: 0.07rem ;
}

.development .development_swiper .swiper-slide .box p:last-child {
    margin-bottom: 0px;
}

.development .development_swiper .swiper-slide .box .img {
    width: 61%;
}

.development .development_swiper .swiper-slide .box .img img {
    width: 100%;
    display: block;
}

.development .development_swiper2 {
    width: 100%;
    padding: 0px 5%;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    padding-bottom: 0.88rem ;

}

.development .development_swiper2 {
    width: 14rem ;
    margin: 0 auto;
}

.development .development_swiper2 .swiper-slide {
    width: 0.4rem ;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 1.58rem ;
}

.development_swiper2_out {
    width: 100%;
    position: relative;
}

.development_swiper2_out .swiper-button-next,
.development_swiper2_out .swiper-button-prev {
    width: 0.51rem ;
    height: 0.51rem ;
    border: 0.01rem  solid #2D69CB;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 24%;
}

.development_swiper2_out .swiper-button-next:hover,
.development_swiper2_out .swiper-button-prev:hover {
    background: #2D69CB;
}


.development_swiper2_out .swiper-button-prev {
    left: 0.4rem ;
}

.development_swiper2_out .swiper-button-next {
    right: 0.4rem ;
}

.development_swiper2_out .swiper-button-next::after,
.development_swiper2_out .swiper-button-prev::after {
    font-size: 0.2rem ;
    color: #2D69CB;
}

.development_swiper2_out .swiper-button-next:hover::after,
.development_swiper2_out .swiper-button-prev:hover::after {
    color: #FFF;
}


.development .development_swiper2 .swiper-slide:last-child {
    margin-right: 0px;
}

.development .development_swiper2 .swiper-slide span {
    font-weight: 400;
    font-size: 0.18rem ;
    color: #515151;
}

.development .development_swiper2 .swiper-slide .ion {
    width: 0.2rem ;
    height: 0.2rem ;
    background: #FFFFFF;
    box-shadow: 0px 0px 0.2rem 0.01rem rgba(0, 0, 0, 0.26);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.21rem ;
}

.development .development_swiper2 .swiper-slide .ion i {
    width: 0.06rem ;
    height: 0.06rem ;
    background: #666666;
    border-radius: 50%;
}

.development .development_swiper2 .swiper-slide-thumb-active .ion {
    background: #004098;
}

.development .development_swiper2 .swiper-slide-thumb-active .ion i {
    background: #FFF;
}

.development .development_swiper2 .xian {
    width: 86%;
    height: 0.01rem ;
    background: #C5C5C5;
    display: block;
    position: absolute;
    bottom: 0.96rem ;
    left: 50%;
    margin-left: -43%;
}

.Honor {
    width: 100%;
    background: #F5F5F5;
    padding-top: 0.51rem ;
    padding-bottom: 0.87rem ;
}

.Honor .public_title_page {
    margin-bottom: 0px ;
}

.Honor .txt_list {
    display: flex ;
    align-items: center ;
    justify-content: center ;
    flex-wrap: wrap ;
    width: 100% ;
}

.Honor .txt_list p{
    color: #555555 ;
    font-size: 0.2rem ;
    display: flex ;
    flex-wrap: wrap ;
    align-items: center ;
    justify-content: center ;
}

.Honor .txt_list b {
    font-size: 0.26rem;
    display: block ;
    margin-right: 0.08rem ;
}

.Honor .txt_list span {
    color: #1656BF ;
    font-size: 0.18rem ;
    display: block ;
}

.Honor .out {
    margin-top: 0.85rem ;
}

.Honor .out .swiper-slide {
    width: 4.63rem ;
    height: 5.69rem ;
    background: #FFFFFF;
    box-shadow: 0px 0.03rem 0.12rem 0.01rem rgba(0, 0, 0, 0.06);
    border-radius: 0px 0px 0px 0px;
    padding: 0px 0.38rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 0.2rem ;
}

.Honor .out .swiper-slide .img {
    width: 100%;
    height: 3.68rem ;
}

.Honor .out .swiper-slide .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.Honor .out .swiper-slide i {
    width: 100%;
    height: 0.02rem;
    background: #EBEBEB;
    margin-top: 0.27rem ;
    margin-bottom: 0.39rem ;
    display: block;
}

.Honor .out .swiper-slide span {
    font-weight: 500;
    font-size: 0.2rem ;
    color: #555555;
}

.Honor .swiper-button-next:after,
.Honor .swiper-button-prev:after {
    color: #333333;
    font-size: 0.2rem ;
}

/* 产品 */

.Products_page {
    margin: 1rem 0px;
    overflow: hidden;
}

.Prod_public_left {
    width: 3.21rem ;
}

.Prod_public_left .title {
    width: 100%;
    background: #F6FBFF;
    height: 1.21rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Prod_public_left .title h5 {
    text-align: center;
    font-weight: 500;
    font-size: 0.23rem ;
    color: #1656BF;
}

.Prod_public_left .title span {
    font-weight: 400;
    font-size: 0.16rem ;
    color: #1656BF;
    margin-top: 0.1rem ;
    display: block;
    text-align: center;
}

.Prod_public_left .Prod_list {
    width: 100%;
    background: #F6FBFF;
    padding-bottom: 0.31rem ;
}

.Prod_public_left .Prod_list .tiem_title {
    width: 100%;
    height: 0.71rem ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0.27rem 0px 0.36rem ;
    box-sizing: border-box;
    transition: 0.5s ease;
}

.Prod_public_left .Prod_list .tiem_title a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom: 0.01rem solid #D9D9D9;
    font-weight: 400;
    font-size: 0.17rem ;
    color: #8B8B8B;
    transition: 0.5s ease;
}

.Prod_public_left .Prod_list .I_box {
    width: 0.14rem ;
    height: 0.14rem ;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.Prod_public_left .Prod_list .I_box i {
    width: 100%;
    height: 0.02rem ;
    position: absolute;
    display: block;
    background: #005199;
    transition: 0.5s ease;
}

.Prod_public_left .Prod_list .I_box i:nth-child(2) {
    width: 0.02rem ;
    height: 100%;
}


.Prod_public_left .Prod_list .tiem_box {
    width: 100%;
    display: none;
}

.Prod_public_left .Prod_list .tiem_box .tiem_box_li {
    width: 100%;
    padding: 0px 0.28rem 0px 0.41rem ;
    box-sizing: border-box;
}

.Prod_public_left .Prod_list .tiem_box a {
    width: 100%;
    height: 0.64rem ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    font-size: 0.17rem ;
    color: #8B8B8B;
    border-bottom: 0.01rem solid #D9D9D9;
}

.Prod_public_left .Prod_list .tiem_title.on {
    background: #1656BF;
}

.Prod_public_left .Prod_list .tiem_title.on a {
    color: #FFF;
}

.Prod_public_left .Prod_list .tiem_title.on .I_box i:nth-child(2) {
    transform: rotate(90deg);
    background: #FFF;
}

.Products_page .out {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Products_page .right {
    width: calc((100% - 3.21rem) - 0.64rem );
}

.Products_page .right .Prod_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.Products_page .right .Prod_list .box {
    width: 32%;
    margin-right: 2%;
    background: #F6FBFF;
    padding: 0.39rem 0.27rem 0.21rem 0.27rem;
    box-sizing: border-box;
    margin-bottom: 0.36rem ;
}

.Products_page .right .Prod_list .box:nth-child(3n) {
    margin-right: 0px;
}

.Products_page .right .Prod_list .box .title span {
    display: block;
    font-weight: 500;
    font-size: 0.2rem ;
    color: #333333;
    text-align: center;
}

.Products_page .right .Prod_list .box .title h5 {
    font-weight: 500;
    font-size: 0.2rem ;
    color: #333333;
    text-align: center;
}

.Products_page .right .Prod_list .box .img {
    width: 100%;
    margin: 0.28rem  0px;
    height: 2.56rem ;
}

.Products_page .right .Prod_list .box .img img {
    width: 100%;
    height: 100%;
    display: block;
}

.Products_page .right .Prod_list .box p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.16rem ;
    color: #999999;
}

.Products_page .right .Prod_list .box p img {
    display: block;
    margin-left: 0.08rem ;
    height: 0.11rem ;
}

.Products_page .right .Prod_list .box:hover p {
    color: #1656BF;
}

.Products_page .right .Prod_list .box:hover p img {
    content: url(../images/hei_jiantou2.png);
}

.Products_page .right .Prod_list .box:hover .title span,
.Products_page .right .Prod_list .box:hover .title h5 {
    color: #1656BF;
}

/* 产品详情 */
.Products_body_xq {
    width: 100%;

}

.Products_body_xq .nav {
    position: relative;
}

.Products_body_xq2 .public {
    max-width: 16rem ;
}

.Prid_Tap {
    margin-top: 0.42rem ;
    margin-bottom: 0.4rem ;
}

.Prid_Tap .out {
    display: flex;
    align-items: center;
}

.Prid_Tap .out a {
    display: flex;
    align-items: center;
}

.Prid_Tap .out a span {
    font-weight: 400;
    font-size: 0.16rem ;
    color: #999999;
    display: block;
    margin-right: 0.16rem ;
}

.Prid_Tap .out a img {
    display: block;
    height: 0.0541rem ;
    margin-right: 0.13rem ;
}

.Prid_Tap .out a:last-child img {
    display: none;
}

.Prod_xq_page {
    width: 100%;
}

.Prod_xq_page .out {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Prod_xq_page .out .left {
    width: 45%;
}

.Prod_xq_page .out .left .Prod_swiper {
    width: 100%;
    height: 3.82rem ;
}

.Prod_xq_page .out .left .Prod_swiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Prod_xq_page .out .left .Prod_swiper .swiper-slide img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.Prod_xq_page .out .left .Prod_swiper2_box {
    width: 100%;
    height: 1.25rem ;
    position: relative;
}

.Prod_xq_page .out .left .Prod_swiper2_box .Prod_swiper2 {
    height: 100%;
}

.Prod_xq_page .out .left .Prod_swiper2_box .swiper-slide {
    height: 100%;
    width: 25%;
}

.Prod_xq_page .out .left .Prod_swiper2_box .swiper-slide img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: contain;
}

.Prod_xq_page .out .left .Prod_swiper2_box .swiper-slide-thumb-active {
    border: 0.02rem  solid #1656BF;
    box-sizing: border-box;
}

.Prod_xq_page .out .left .swiper-button-next:after,
.Prod_xq_page .out .left .swiper-button-prev:after {
    color: #888888;
    font-size: 0.18rem ;
}

.Prod_xq_page .out .right {
    width: 43%;
}

.Prod_xq_page .out .right h5 {
    font-weight: 400;
    font-size: 0.43rem ;
    color: #333333;
}

.Prod_xq_page .out .right i {
    width: 100%;
    height: 0.01rem ;
    background: #D6D6D6;
    display: block;
    margin: 0.49rem  0px;
}

.Prod_xq_page .out .right p {
    font-weight: 400;
    font-size: 0.18rem ;
    color: #666666;
    line-height: 1.6em;
    letter-spacing: 0.01rem ;
}

.Prod_xq_page .out .right a {
    width: 1.73rem ;
    height: 0.56rem ;
    background: #1656BF;
    box-shadow: 0px 0.03rem  0.06rem 0.01rem rgba(0, 0, 0, 0.08);
    border-radius: 0.41rem ;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 0.18rem ;
    margin-top: 0.4rem ;
}

.Prod_xq_page .text_out {
    width: 100%;
    background: #FFF;
    padding: 0.6rem  0.93rem  0.9rem  0.93rem ;
    box-sizing: border-box;
    border-radius: 0.41rem ;
    margin-top: 0.67rem ;
    margin-bottom: 0.74rem ;
}

.Prod_xq_page .text_out .box .title {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 0.35rem ;
    border-bottom: 1px solid #D6D6D6;
    box-sizing: border-box;
    margin-bottom: 0.35rem ;
}

.Prod_xq_page .text_out .box .title img {
    height: 0.29rem ;
    display: block;
    margin-right: 0.19rem ;
}

.Prod_xq_page .text_out .box .title h5 {
    font-weight: 500;
    font-size: 0.28rem ;
    color: #333333;
}

.Prod_xq_page .text_out .box .txt {
    margin-bottom: 0.64rem ;
}

.Prod_xq_page .text_out .box .txt p {
    font-weight: 400;
    font-size: 0.18rem ;
    color: #666666;
    line-height: 1.6em;
    letter-spacing: 0.01rem ;
}

.Prod_xq_page .text_out .box .txt img {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.News_xq_page {
    margin-bottom: 0.9rem ;
}

.News_xq_page .public {
    padding-top: 0.6rem ;
    padding-bottom: 0.6rem ;
    background-color: rgba(248, 248, 248, 1);
    margin-top: 3%;
    box-sizing: border-box;
    max-width: 15rem ;
}

.News_xq_page .public .out {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-right: 0.5rem ;
    background-color: rgba(255, 255, 255, 1);
    width: auto;
    padding-left: 0.5rem ;
    padding-top: 0.5rem ;
    padding-bottom: 0.3rem ;
    box-sizing: border-box;
    width: 95%;
    margin: 0 auto;
}

.News_xq_page .public .out .title {
    margin-bottom: 0.3rem ;
    width: 100%;
    text-align: center;
}

.News_xq_page .public .out .text {
    width: 100%;
}

.News_xq_page .public .out .text section , .News_xq_page .public .out .text span {
    color: #333 ;
    font-size: 0.2rem !important;
    margin-top: 0px;
    /* margin-bottom: 20px; */
    line-height: 1.8em;
    letter-spacing: 0.01rem;
}

.News_xq_page .public .out .text img {
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    pointer-events: none;
    /* 阻止鼠标事件 */
}

.News_xq_page .public .out .title h5 {
    font-size: 0.36rem ;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 0.1rem ;
    margin-top: 0px;
    font-weight: 500;
}

.News_xq_page .public .out .title span {
    display: flex;
    align-items: center;
    font-size: 0.14rem ;
    color: rgba(168, 171, 178, 1);
    justify-content: center;
}

.titke_boxoaisd {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.3rem ;
}

.titke_boxoaisd i {
    width: 0.01rem ;
    height: 0.18rem ;
    background: #eee;
    display: block;
    margin: 0px 0.2rem ;
}


.News_xq_page .public .out .text p {
    color: rgb(0, 0, 0) ;
    font-size: 0.14rem ;
    margin-top: 0px;
    /* margin-bottom: 20px; */
    line-height: 1.8em;
    letter-spacing: 0.01rem ;
}


.News_xq_page .public .out .text p video {
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: auto;
}

.News_xq_page .public .out .but_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.3rem ;
}

.News_xq_page .public .out .but_box .box {
    display: flex;
    align-items: center;
    font-size: 0.14rem;
}

.News_xq_page .public .out .but_box .box span {
    color: rgba(85, 85, 85, 1);
    font-size: 0.14rem ;
    margin-right: 0.1rem ;
    margin-left: 0.1rem ;
}

.News_xq_page .public .out .but_box .box a {
    color: rgba(85, 85, 85, 1);
    font-size: 0.14rem ;
    text-align: right;
}

.min_Nav_out {
    position: absolute;
    top: 0.9rem;
    left: 0px;
    width: 100%;
    background: #FFF;
    box-shadow: 0px 0px 0.1rem  0.01rem  #00000027;
    padding: 0.15rem 0.2rem ;
    box-sizing: border-box;

    display: none;

}

.min_Nav_out .box {
    border-bottom: 0.01rem solid #eee;
}

.min_Nav_out .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.min_Nav_out .title a {
    color: #333;
    font-size: 0.15rem;
    width: 80%;
    padding: 0.1rem 0px;
    box-sizing: border-box;
}

.min_Nav_out .title img {
    width: 0.17rem ;
    display: block;
}

.min_Nav_out .title img.on {
    transform: rotate(90deg);
}

.min_pulldown {
    width: 100%;
    padding: 0px 0.15rem ;
    box-sizing: border-box;
    display: none;
}

.min_pulldown a {
    color: #333;
    font-size: 0.13rem ;
    display: block;
    padding: 0.1rem 0px;
    box-sizing: border-box;
}

.min_navCan {
    width: 0.5rem;
    height: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
}

.min_navCan i {
    width: 100%;
    height: 0.02rem;
    display: block;
    background: #333;
    margin-bottom: 0.07rem ;
    transition: 0.6s;
}

.min_navCan i:last-child {
    margin-bottom: 0px;
}


.min_navCan.all i:nth-child(1) {
    transform: rotate(45deg) translateY(0.12rem);
}


.min_navCan.all i:nth-child(2) {
    transform: scale(0);
    opacity: 0;
}

.min_navCan.all i:nth-child(3) {
    transform: rotate(-43deg) translateY(-0.13rem);
}

.Pres_dow {
    position: absolute;
    background: #FFFF;
    top: 0.9rem ;
    left: 50%;
    margin-left: -0.85rem ;
    display: none;
    box-shadow: 0px 0px 0.1rem 0.01rem #00000025;
}

.Pr_box .title_1 {
    width: 1.7rem ;
    height: 0.6rem ;
    border-bottom: 0.01rem  solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0.2rem ;
    box-sizing: border-box;
    font-size: 0.14rem ;
}

.Pr_box .title_1 span,
.Pr_box .title_2 span {
    display: flex;
    align-items: center;
    font-size: 0.15rem ;
}

.Pr_box .title_1 span::before,
.Pres_dow_1 .Pr_box_1 .title_2 span::before,
.Pres_dow_2 a::before {
    content: '';
    background: url(../images/t_nav_slider_icon.png) no-repeat center;
    display: block;
    height: 0.14rem ;
    width: 0px;
    margin-right: 0.03rem ;
    transition: all 0.3s ease 0s;
    opacity: 1;
}

.Pr_box .title_1:hover span::before,
.Pres_dow_1 .Pr_box_1 .title_2:hover span::before,
.Pres_dow_2 a:hover:before {
    opacity: 1;
    transform: translate(0, 0);
    width: 0.3rem ;
}

.Pr_box.on .title_1 span::before,
.Pr_box.on2 .title_2 span::before {
    width: 0.3rem ;
    opacity: 1;
    transform: translate(0, 0);
}

.Pres_dow_1 {
    width: 2.6rem ;
    background: #FFF;
    position: absolute;
    right: -2.6rem ;
    top: 0px;
    display: none;
}

.Pres_dow_1 .Pr_box_1 {
    width: 100%;
    position: relative;
}

.Pres_dow_1 .Pr_box_1 .title_2 {
    width: 100%;
    height: 0.6rem ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0.1rem;
    box-sizing: border-box;
    border-bottom: 0.01rem solid #eee;
    font-size: 0.14rem ;
    border-left: 0.01rem  solid #eee;
}

.Pres_dow_2 {
    position: absolute;
    top: 0px;
    right: -2.5rem;
    background: #FFF;
    width: 2.5rem;
    display: none;
}

.Pres_dow_2 a {
    width: 100%;
    height: 0.6rem ;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0px 0.15rem ;
    box-sizing: border-box;
    border-bottom: 0.01rem  solid #eee;
    font-size: 0.14rem ;
    border-left: 0.01rem  solid #eee;
}

.Pr_box {
    position: relative;
}

#xptc .banner {
    margin-top: 0.9rem ;
}

.Xptc_pages {
    width: 100%;
    /* background: url(../images/Xptc_images.png) no-repeat bottom; */
    background: #FFF ;
    background-size: cover;
    padding-top: 0.6rem ;
    padding-bottom: 0.9rem ;
}

.Xptc_pages .Xptc_out {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.Xptc_pages .Xptc_out .left {
    width: 3.41rem ;
    background: rgba(248, 248, 248, 1);
    border-radius: 0.12rem ;
    padding: 0.3rem  0px 0px 0px;
    box-sizing: border-box;
}

.Xptc_pages .Xptc_out .left .link_bou {
    width: 100%;
    border-radius: 0.1rem ;
    background: #2D69CB;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0.54rem ;
}

.Xptc_pages .Xptc_out .left .link_bou a {
    color: #FFF;
    font-size: 0.17rem ;
    font-weight: 500;
}

.Xptc_pages .Xptc_out .left .title {
    width: 100%;
    padding: 0px 0.3rem 0rem 0.2rem;
    box-sizing: border-box;
    margin-bottom: 0.25rem ;
}

.Xptc_pages .Xptc_out .left .title h5 {
    color: #333;
    font-size: 0.22rem ;
    display: block;
    margin-bottom: 0.05rem;
    width: 100% ;
}

.Xptc_pages .Xptc_out .left .title span {
    color: #333;
    font-size: 0.17rem;
    display: block;
    padding-bottom: 0.25rem ;
    border-bottom: 0.01rem solid #004098;
    box-sizing: border-box;
    display: block ;
}

.Xptc_pages .Xptc_out .left .list {
    width: 100%;
    overflow-y: scroll;
    max-height: 5.73rem ;
    padding: 0px 0.3rem 0px 0.2rem ;
    box-sizing: border-box;
    margin-bottom: 0.3rem ;
}

.Xptc_pages .Xptc_out .left .list .item {
    width: 100%;
    padding: 0.3rem  0px;
    box-sizing: border-box;
    border-bottom: 0.01rem  solid #2D69CB;
    display: block;
}

.Xptc_pages .Xptc_out .left .list .item:first-child {
    padding-top: 0px;
}

.Xptc_pages .Xptc_out .left .list .item:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.Xptc_pages .Xptc_out .left .list .item .tit {
    color: #0947AD;
    font-weight: 500;
    font-size: 0.18rem ;
    margin-bottom: 0.2rem ;
    cursor: pointer;
    display: flex ;
    align-items: center ;
}

.Xptc_pages .Xptc_out .left .list .item .tit a {
    color: #0947AD;
    font-weight: 500;
    font-size: 0.18rem ;
}

.Xptc_pages .Xptc_out .left .list .item .tit span {
    display: block ;
    cursor: pointer;
    width: 0.1rem ;
    height: 0.1rem ;
    position: relative;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    margin-left: 0.15rem ;
}

.Xptc_pages .Xptc_out .left .list .item .tit span i {
    width: 0.15rem ;
    height: 0.02rem ;
    background: #0947AD ;
    display: block ;
    position: absolute ;
    transition: 0.5s ease ;
}

.Xptc_pages .Xptc_out .left .list .item .tit span i:nth-child(2) {
    height: 0.15rem ;
    width: 0.02rem ;
    transform: rotate(90deg);
}

.Xptc_pages .Xptc_out .left .list .item .tit.on i:nth-child(2){
    transform: rotate(0deg);
}

.Xptc_pages .Xptc_out .left .list .item .tit a.txt {
    font-weight: bold ;
}

.Xptc_pages .Xptc_out .left .list .item .box {
    margin-bottom: 0.24rem ;
}

.Xptc_pages .Xptc_out .left .list .item .box:last-child {
    margin-bottom: 0px ;
}

.Xptc_pages .Xptc_out .left .list .item .box h6{
    display: flex ;
    align-items: center ;
    justify-content: space-between ;
    margin-bottom: 0.1rem ;
}

.Xptc_pages .Xptc_out .left .list .item .box h6 span {
    display: block ;
    cursor: pointer;
    width: 0.1rem ;
    height: 0.1rem ;
    position: relative;
    display: flex ;
    align-items: center ;
    justify-content: center ;
}



.Xptc_pages .Xptc_out .left .list .item .box h6 span i {
    width: 0.15rem ;
    height: 0.02rem ;
    background: #000000 ;
    display: block ;
    position: absolute ;
    transition: 0.5s ease ;

}

.Xptc_pages .Xptc_out .left .list .item .box h6 span i:nth-child(2) {
    height: 0.15rem ;
    width: 0.02rem ;
    transform: rotate(90deg);
}

.Xptc_pages .Xptc_out .left .list .item .box h6 span.on i:nth-child(2){
    transform: rotate(0deg);
}

.Xptc_pages .Xptc_out .left .list .item .box h6 a {
    color: #000000;
    font-size: 0.2rem;
    display: block;
}

.Xptc_pages .Xptc_out .left .list .item .box h6 a.on , .Xptc_pages .Xptc_out .left .list .item .box h6 a:hover {
    color: #2D69CB;
    /* font-size: 0.24rem; */
}

.Xptc_pages .Xptc_out .left .list::-webkit-scrollbar-corner,
.Xptc_pages .Xptc_out .left .list::-webkit-scrollbar-corner {
    width: 0;
}

.Xptc_pages .Xptc_out .left .list::-webkit-scrollbar,
.Xptc_pages .Xptc_out .left .list::-webkit-scrollbar {
    width: 0.16rem ;
    height: 0.16rem ;
    background: transparent;
}

.Xptc_pages .Xptc_out .left .list::-webkit-scrollbar-thumb,
.Xptc_pages .Xptc_out .left .list::-webkit-scrollbar-thumb {
    border-radius: 0.08rem ;
    border: 0.04rem solid transparent;
    background-clip: content-box;
    background-color: #D8D8D8;
}



.Xptc_pages .Xptc_out .left .list .item .box .item_box {
    width: 100%;
}

.Xptc_pages .Xptc_out .left .list .item .box .item_box a {
    width: 100%;
    display: block;
    line-height: 2em;
    font-size: 0.18rem ;
}

.Xptc_pages .Xptc_out .left .list .item .box .item_box a:hover {
    color: #2D69CB ;
}

.Xptc_pages .Xptc_out .right {
    width: calc(100% - 3.41rem - 0.6rem );
    display: flex;
    flex-wrap: wrap;
}

.Xptc_pages .Xptc_out .right .box {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 0.4rem ;
}

.Xptc_pages .Xptc_out .right .box:nth-child(3n) {
    margin-right: 0px;
}

.Xptc_pages .Xptc_out .right .box .img {
    width: 100%;
    background: rgba(248, 248, 248, 1);
    padding: 0.4rem 0.2rem 0.3rem 0.3rem;
    box-sizing: border-box;
    border-radius: 0.1rem 0.1rem 0px 0px;
    box-sizing: border-box;
}

.Xptc_pages .Xptc_out .right .box .img .title {
    width: 100%;
    position: relative;
}

.Xptc_pages .Xptc_out .right .box .img .title::after {
    width: 0.03rem ;
    height: 80%;
    background: #2D69CB;
    display: block;
    border-radius: 0.02rem ;
    box-sizing: border-box;
    content: '';
    position: absolute;
    left: -0.1rem ;
    top: 50%;
    transform: translateY(-50%);
}

.Xptc_pages .Xptc_out .right .box .img img {
    width: 100%;
    height: 100% ;
    object-fit: cover ;
    display: block;
    /* margin: 0.4rem 0px ; */
    transition: 0.5s ease ;
}

.Xptc_pages .Xptc_out .right .box .img .thumb {
    width: 100% ;
    height: 2.6rem ;
    overflow: hidden;
}

.Xptc_pages .Xptc_out .right .box .img .title h5 {
    color: #333333 ;
    font-size: 0.2rem ;
    line-height: 1.7em;
    font-weight: 500 ;
    overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
    
}

/* .Xptc_pages .Xptc_out .right .box .img .title h5:first-child {
    font-weight: bold ;
} */

.Xptc_pages .Xptc_out .right .box:hover .img .thumb img {
    transform: scale(1.2)
}

.Xptc_pages .Xptc_out .right .box .txt {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background: #2D69CB;
    font-size: 0.17rem ;
    height: 0.54rem ;
    border-radius: 0.05rem ;
    margin-top: -0.1rem;
}

.xptc_details_Top {
    width: 100%;
    background: url(../images/108@1x.jpg) no-repeat center;
    background-size: cover;
    padding: 1.2rem 0px 0.9rem 0px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.xptc_details_Top .out {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xptc_details_Top .out .left {
    width: 5.82rem ;
}

.xptc_details_Top .out .left .title {
    width: 100%;
    margin-bottom: 0.2rem ;
}

.xptc_details_Top .out .left .title h5 {
    color: #2D69CB;
    font-size: 0.43rem ;
}

.xptc_details_Top .out .left .title h5::after {
    width: 0.6rem ;
    height: 0.03rem ;
    background: #2D69CB ;
    display: block ;
    margin-bottom: 0.15rem ;
    content: '';
    margin-top: 0.1rem ;
}

.xptc_details_Top .out .left .title span {
    display: block;
    line-height: 1.7em;
    color: #333;
    font-size: 0.28rem;
}

.xptc_details_Top .out .left p {
    font-size: 0.24rem;
    color: #333;
    line-height: 1.7em;
}

.xptc_details_Top .out .left .txt {
    width: 100%;
    overflow-y: auto ;
    max-height: 2.8rem ;
    padding-right: 0.2rem ;
    box-sizing: border-box ;
}

/* 自定义整个滚动条 */
.xptc_details_Top .out .left .txt::-webkit-scrollbar {
    width: 0.05rem;               /* 滚动条宽度 */
}
 
/* 滚动槽 */
.xptc_details_Top .out .left .txt::-webkit-scrollbar-track {
    background: #f1f1f1;       /* 滚动条背景颜色 */
}
 
/* 滚动条滑块 */
.xptc_details_Top .out .left .txt::-webkit-scrollbar-thumb {
    background: #999;         /* 滑块颜色 */
    border-radius: 0.05rem;      /* 滑块圆角 */
}
 
/* 滑块悬停 */
.xptc_details_Top .out .left .txt::-webkit-scrollbar-thumb:hover {
    background: #555;         /* 滑块悬停颜色 */
}

.xptc_details_Top .out .right {
    width: calc(100% - 5.16rem - 0.7rem);
    display: flex;
    align-items: flex-end;
    justify-content: right ;
}

.xptc_details_Top .out .right .img {
    width: 5.33rem;
}

.xptc_details_Top .out .right .img img {
    width: 100%;
    transition: 0.5s ease ;
}

.xptc_details_Top .out .right .img:hover img {
    transform: scale(1.2);
}

.xptc_details_Top .out .right a {
    width: 1.76rem;
    height: 0.43rem;
    background: #3074E4;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.26rem ;
    flex: none;
    border-radius: 0.23rem ;
}

.xptc_details .public {
    max-width: 13.81rem ;
}

.xptc_details_title {
    display: flex;
    align-items: center;
    margin-top: 0.4rem ;
}

.xptc_details_title h5 {
    color: #2D69CB ;
    font-size: 0.36rem ;
    display: flex;
    align-items: flex-end;
}

.xptc_details_title h5 span {
    color: #2D69CB ;
    font-size: 0.2rem ;
    font-weight: 500;
    margin-left: 0.05rem ;

    font-family: '微软雅黑', 'Microsoft YaHei', '黑体', SimHei, sans-serif;
}

.xptc_details_title .icon_txt {
    width: 0.27rem ;
    height: 0.27rem;
    position: relative;
    margin-right: 0.15rem ;
}

.xptc_details_title .icon_txt i {
    width: 0.18rem;
    height: 0.18rem ;
    display: block;
    background: #2D69CB;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 2;
}

.xptc_details_title .icon_txt i:nth-child(2) {
    right: 0px;
    top: 0px;
    bottom: auto;
    left: auto;
    background: #CEE1FF;
    z-index: 1;
}

.xptc_details_box {
    /* margin-bottom: 0.5rem ; */
}

.xptc_details_box .text {
    margin: 0.3rem 0px 0.2rem 0px;
}

.xptc_details_box .text p {
    color: #333;
    font-size: 0.2rem !important;
    line-height: 1.7em;
}

.xptc_details_box .text p span {
    color: #333;
    font-size: 0.2rem !important;
    line-height: 1.7em;
}

.xptc_details_box2 {
    width: 100%;
}

.xptc_details_box2 .out {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    position: relative;

}

.xptc_details_box2 .out .icon {
    position: absolute;
    width: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.xptc_details_box2 .out .icon img {
    width: 100%;
    display: block;
    transform: translateY(30%);
}

.xptc_details_box2 .out .box {
    width: 40%;
}

.xptc_details_box2 .out .box .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0.4rem ;
}

.xptc_details_box2 .out .box .list .item {
    width: 46%;
    /* height: 63px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.01rem solid #2D69CB;
    box-sizing: border-box;
    color: #333;
    font-size: 0.15rem ;
    border-radius: 0.1rem;
    position: relative;
    margin-bottom: 0.3rem  ;
    padding: 0.15rem 0.1rem ;
    box-sizing: border-box ;
}

.xptc_details_box2 .out .box .list .item span {
    font-size: 0.2rem  ;
    color: #333 ;
    position: relative;
    z-index: 3 ;
    text-align: center ;
}

.xptc_details_box2 .out .box .list .item::after {
    width: 0.23rem ;
    height: 0.3rem ;
    background: #fff;
    transform: rotate(32deg);
    position: absolute;
    right: -0.02rem;
    bottom: -0.02rem ;
    content: ' ';
    z-index: 1;
}

.xptc_details_box2 .out .box .list .item img {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    width: 0.1rem ;
    height: 0.18rem ;
}

.xptc_details_box3 {
    width: 100%;
    position: relative;
    padding-bottom: 0.4rem ;
}

.xptc_details_box3::after {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), #2D69CB);
    height: 70%;
    content: '';
}

.xptc_details_box3 .txt {
    margin-top: 0.4rem ;
    z-index: 2;
    position: relative;
}

.xptc_details_box3 .txt tr {
    background: rgb(242, 242, 242) ;
}

.xptc_details_box3 .txt tr td {
    background: rgb(242, 242, 242) ;
}

.xptc_details_box3 .txt tr:nth-child(2n) {
    background: #FFF ;
}

.xptc_details_box3 .txt tr:nth-child(2n)  td {
    background: #FFF ;
}

.xptc_details_box3 .txt img {
    width: auto ;
    max-width: 100% ;
    display: block ;
    margin: 0 auto ;
}

.xptc_details_box3 .txt tr td:nth-child(1) {
    background: rgb(242, 242, 242) ;
}

.xptc_details_box3 .txt tr:nth-child(1) , .xptc_details_box3 .txt .firstRow {
    background: rgb(29, 64, 137) !important;
}

.xptc_details_box3 .txt tr:nth-child(1) td , .xptc_details_box3 .txt .firstRow td {
    background: rgb(29, 64, 137) !important;
}

.xptc_details_box4 {
    width: 100%;
    padding-bottom: 0.7rem ;
    position: relative;
}

.xptc_details_box4::after {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), #E0EAFD);
    height: 70%;
    content: '';
    display: none ;
}

.xptc_details_box4 .txt {
    margin-top: 0.5rem ;
    position: relative;
    z-index: 2;
}

.xptc_details_box4 .txt img {
    width: auto;
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: auto ;
}

tr {
    background: #FFF;
}

.xptc_jishucanshu {
    width: 100% ;
    border: 0.01rem solid #1D4089;
    box-sizing: border-box ;
    border-radius: 0.15rem;
    overflow: hidden;
}

.xptc_jishucanshu .out {
    display: flex ;
    border-bottom: 0.01rem solid #000000 ;
    box-sizing: border-box;
    background: #F2F2F2 ;
}

.xptc_jishucanshu .out:nth-child(2n) {
    background: #FFF ;
}

.xptc_jishucanshu .out:last-child {
    border-bottom:none;
}

.xptc_jishucanshu .out .left {
    width: 3.42rem ;
    background: #F2F2F2;
    border-right: 0.01rem solid #000000 ;
    box-sizing: border-box;
    flex: none ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    color: #000000 ;
    font-size: 0.24rem ;

}

.xptc_jishucanshu .out .right {
    width: 100% ;
    display: flex ;
}

.xptc_jishucanshu .out .right .box {
    flex: 1 ;
    text-align: center ;
    padding: 0.1rem 0px ;
    box-sizing: border-box ;
    border-right: 0.01rem solid #000000 ;
    font-size: 0.2rem ;
    color: #000000 ;
}

.xptc_jishucanshu .out .right .box:last-child {
    border-right:none;
}

.xptc_jishucanshu  .title .left {
    background: #1D4089 ;
    flex: none ;
    font-size: 0.24rem ;
    color: #FFF ;
}

.xptc_jishucanshu  .title .right {
    background: #1D4089 ;
}

.xptc_jishucanshu  .title .right .box {
    font-size: 0.22rem ;
    color: #FFF ;
}

.banner {
    margin-top: 0.9rem ;
}

.xptc_details_box3 .txt table td span , .xptc_details_box3 .txt table td p {
    font-size: 0.2rem ;
} 

.xptc_details_box3 .txt table td {
    padding: 0.1rem 0px !important;
    box-sizing: border-box ;
}

.Tel_list_Pages {
    display: none ;
}

@media (max-width:768px) {

    body {
        padding-bottom: 1rem ;
    }

    .Tel_list_Pages {
        position: fixed ;
        display: block ;
        bottom: 0px ;
        left: 0px ;
        width: 100% ;
        z-index: 99999 ;
        background: #3B81DA;
    }

    .Tel_list_Pages a {
        width: 100% ;
        display: flex ;
        align-items: center ;
        justify-content: center ;
        height: 1rem ;
        color: 0.3rem ;
        color: #FFF ;
    }

}

.Mianbiaoxie_box  {
    padding-top: 0.3rem ;
    box-sizing: border-box ;
    position: absolute ;
    top: 0px ;
    left: 0px ;
    width: 100%;
}

.Mianbiaoxie_box .public {
    font-size: 0.16rem ;
    display: flex ;
    flex-wrap: wrap ;
    align-items: center ;
}

.Mianbiaoxie_box a {
    color: #333 ;
    font-size: 0.16rem; 
}

.Mianbiaoxie_box span {
    font-size: 0.16rem ;
    color: #333 ;
    display: block ;
    margin: 0px 0.08rem ;
}

.Mianbiaoxie_box a img {
    height: 0.2rem ;
    display: block ;
}

.Mianbiaoxie_box a:hover {
    color: rgb(45, 105, 203) ;
}

@media (max-width:996px) {

    .banner {
        margin-top: 0rem ;
    }

    .Application .out .box .left img {
        height: auto;
    }

    .News_page {
        margin-bottom: 0.7rem;
    }

    .titke_boxoaisd {
        margin-top: 0.3rem;
    }

    .titke_boxoaisd i {
        margin: 0px 0.2rem;
        height: 0.18rem;
    }

    .min_navCan {
        display: flex;
    }

    .nav .out ul {
        display: none;
    }

    .public {
        padding: 0px 2%;
        box-sizing: border-box;
    }

    .nav {
        height: 0.9rem;
        box-shadow: 0px 0.03rem 0.06rem 1px rgba(0, 0, 0, 0.16);
        position: relative;
    }

    .nav .out .logo {
        height: 0.45rem;
    }

    .public_title {
        margin: 0.6rem 0px 0.4rem 0px;
    }

    .public_title h5 {
        font-size: 0.42rem;
    }

    .public_title .button_list {
        margin-top: 0.4rem;
        width: 100% ;
    }

    .public_title .button_list .list_tiem {
        width: 32% ;
        height: 0.52rem;
        border-radius: 0.06rem;
        font-size: 0.2rem;
        margin-right: 2% ;
    }

    .public_title .button_list .list_tiem:nth-child(3n) {
        margin-right: 0px ;
    }

    .Recommendation .out .swiper-slide {
        justify-content: space-between;
    }

    .Recommendation .out .swiper-slide {
        width: 100% ;
    }

    .Recommendation .out .swiper-slide .box {
        margin-right: 0px;
        margin-bottom: 0.13rem;
    }

    .Recommendation .out .swiper-slide .box .img {
        height: 2.7rem;
    }

    .Recommendation .out .swiper-slide .box .text {
        margin-top: 0.28rem;
    }

    .Recommendation .out .swiper-slide .box .text h5 {
        font-size: 0.21rem;
        margin-bottom: 0.1rem;
    }

    .Recommendation .out .swiper-slide .box .text p {
        font-size: 0.16rem;
    }

    .Applications .public_title {
        margin-bottom: 0.51rem;
        margin-top: 0.2rem ;
    }

    .public_title .button_list {
        flex-wrap: wrap;
    }

    .Applications .public_title h5 {
        margin-bottom: 0px;
    }

    .public_title .button_list .list_tiem {
        margin-bottom: 0.2rem;
    }

    .Applications .swiper-slide.on {
        width: 100%;
    }

    .Applications .swiper-slide {
        width: 100%;
        height: 5.79rem;
    }

    .Applications .swiper-slide .box {
        width: 100%;
        padding: 0px 0.8rem;
        padding-bottom: 0.8rem;
    }

    .Applications .swiper-slide .box h5 {
        font-size: 0.3rem;
        margin-bottom: 0.31rem;
    }

    .Applications .swiper-slide .box p {
        font-size: 0.18rem;
    }

    .public_link {
        width: 1.55rem;
        height: 0.48rem;
        border-radius: 0.24rem 0px 0.24rem 0px;
        font-size: 0.18rem;
        margin-top: 0.39rem;
    }

    .public_link img {
        margin-left: 0.16rem;
        height: 0.13rem;
    }

    .Applications .swiper-button-next,
    .Applications .swiper-button-prev {
        width: 0.56rem;
        height: 0.56rem;
        margin: 0px 0.15rem;
    }

    .Applications .swiper-button-next::after,
    .Applications .swiper-button-prev::after {
        font-size: 0.25rem;
    }

    .Applications .swiper-slide .title {
        transform: translateY(100%);
    }

    .Applications .swiper-slide .public_link,
    .Applications .swiper-slide .box h5,
    .Applications .swiper-slide .box p {
        transform: translateX(0%);
        opacity: 1;
    }

    .News .swiper-slide {
        width: 100%;
        margin-right: 0px;
        border-radius: 0.09rem;
    }

    .News .swiper-slide .img {
        height: 3.16rem;
    }

    .News .swiper-slide .txt {
        padding: 0.3rem 0.23rem;
    }

    .News .swiper-slide .txt h5 {
        font-size: 0.24rem;
        margin-bottom: 0.46rem;
    }

    .News .swiper-slide .txt .but_box span {
        font-size: 0.18rem;
    }

    .News .swiper-slide .txt .but_box .jiantou span {
        font-size: 0.18rem;
    }

    .News .swiper-slide .txt .but_box .jiantou img {
        height: 0.12rem;
        margin-left: 0.09rem;
    }

    .News .link {
        width: 1.55rem;
        height: 0.48rem;
        border-radius: 0.24rem 0px 0.24rem 0px;
        font-size: 0.18rem;
        margin: 0.41rem auto 0.98rem auto;
    }

    .News .link img {
        height: 0.14rem;
        margin-left: 0.15rem;
    }

    .About {
        padding: 2rem 0px 2rem 5.5%;
    }

    .About .out {
        flex-wrap: wrap;
    }

    .About .out .left {
        width: 100%;
        height: auto;
    }

    .About .out .left .box {
        width: 48%;
        height: 1.9rem;
        border-radius: 0.08rem;
        margin-bottom: 0.32rem;
    }

    .About .out .left .box .Numbers b {
        font-size: 0.55rem;
        margin-right: 0.05rem;
    }

    .About .out .left .box .Numbers span {
        font-size: 0.26rem;
    }

    .About .out .left .box p {
        font-size: 0.18rem;
    }

    .About .out .right {
        width: 100%;
        height: auto;
    }

    .About .out .right h5 {
        font-size: 0.4rem;
    }

    .About .out .right i {
        width: 0.92rem;
        height: 0.04rem;
        margin-top: 0.4rem;
        margin-bottom: 0.54rem;
    }

    .About .out .right span {
        font-size: 0.22rem;
        margin-bottom: 0.4rem;
    }

    .About .out .right p {
        font-size: 0.2rem;
    }

    .About .out .right a {
        width: 1.43rem;
        height: 0.42rem;
        border-radius: 0.26rem;
        font-size: 0.16rem;
        margin-top: 0.4rem;
    }

    .About .out .right a img {
        height: 0.11rem;
        margin-left: 0.1rem;
    }

    .Footer .out .right {
        display: none;
    }

    .Footer {
        padding: 0.67rem 0px;
        box-sizing: border-box;
    }

    .Footer .out .left {
        width: 100%;
        margin-right: 0px;
    }

    .Footer .out .left a img {
        height: 0.52rem;
    }

    .Footer .out .left i {
        width: 1.55rem;
        margin: 0.4rem 0px 0.26rem 0px;
    }

    .Footer .out .left .box span {
        font-size: 0.14rem;
        margin-bottom: 0.27rem;
    }

    .Record_n_varchar {
        height: 0.6rem;
    }

    .Record_n_varchar .out a:first-child {
        margin-right: 0.24rem;
    }

    .Record_n_varchar .out a {
        font-size: 0.12rem;
    }

    .Record_n_varchar .out {
        justify-content: left;
    }

    .public_Tap .out {
        height: 1rem;
    }

    .public_Tap .out a {
        font-size: 0.24rem;
        margin-right: 0.4rem;
    }

    .public_Tap .out a:hover::after,
    .public_Tap .out a.on::after {
        width: 100%;
    }

    .public_Tap .out a::after {
        height: 0.04rem;
    }

    .About_page {
        margin: 0.98rem 0px 0.81rem 0px;
    }

    .About_page .out {
        flex-wrap: wrap;
    }

    .About_page .out .left {
        width: 100%;
    }

    .About_page .out .right {
        width: 100%;
        margin-top: 0.3rem;
    }

    .About_page .out .left h5 {
        font-size: 0.42rem;
    }

    .About_page .out .left i {
        width: 0.92rem;
        height: 0.04rem;
        margin: 0.4rem 0px 0.54rem 0px;
    }

    .About_page .out .left span {
        font-size: 0.26rem;
        margin-bottom: 0.4rem;
    }

    .About_page .out .left p {
        font-size: 0.2rem;
    }

    .public_title_page {
        margin-top: 0.4rem;
        margin-bottom: 0.5rem;
    }

    .public_title_page h5 {
        font-size: 0.42rem;
        margin-bottom: 0.2rem;
    }

    .public_title_page span {
        font-size: 0.18rem;
    }


    .development .development_swiper2 {
        width: 100%;
        padding: 0px;
    }

    .development_swiper2_out .swiper-button-next,
    .development_swiper2_out .swiper-button-prev {
        width: 0.51rem;
        height: 0.51rem;
        top: 50%;
    }

    .development_swiper2_out .swiper-button-prev {
        left: 0px;
    }

    .development_swiper2_out .swiper-button-next {
        right: 0px;
    }

    .development_swiper2_out .swiper-button-next::after,
    .development_swiper2_out .swiper-button-prev::after {
        font-size: 0.2rem;
    }

    .development {
        margin-top: 1rem;
    }

    .development .out {
        margin-top: 0.84rem;
    }

    .development .development_swiper {
        margin-bottom: 0.7rem;
    }

    .development .development_swiper .swiper-slide {
        flex-wrap: wrap;
    }

    .development .development_swiper .swiper-slide h5 {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .development .development_swiper .swiper-slide .box {
        width: 100%;
        flex-wrap: wrap;
    }

    .development .development_swiper .swiper-slide .box .text {
        width: 100%;
    }

    .development .development_swiper .swiper-slide .box .img {
        width: 100%;
        margin-top: 0.3rem;
    }

    .development .development_swiper .swiper-slide .box p {
        font-size: 0.2rem;
        margin-bottom: 0.45rem;
    }

    .development .development_swiper .swiper-slide .box p::after {
        width: 0.13rem;
        height: 0.13rem;
        left: -0.25rem;
        top: 0.07rem;
        display: none;
    }

    .development .development_swiper2 .swiper-slide {
        margin-right: 13px;
    }

    .development .development_swiper2 .swiper-slide span {
        font-size: 0.2rem;
    }

    .development .development_swiper2 .swiper-slide .ion {
        width: 0.2rem;
        height: 0.2rem;
        box-shadow: 0px 0px 0.2rem 1px rgba(0, 0, 0, 0.26);
        margin-top: 0.21rem;
    }

    .development .development_swiper2 {
        padding-bottom: 0.88rem;
    }

    .development .development_swiper2 .xian {
        bottom: 0.94rem;
    }

    .Honor {
        padding-top: 0.51rem;
        padding-bottom: 0.87rem;
    }

    .Honor .out {
        margin-top: 0.85rem;
    }

    .Honor .out .swiper-slide {
        width: 4.6rem;
        height: 5.6rem;
        padding: 0px 0.35rem;
        margin-right: 0.2rem;
    }

    .Honor .out .swiper-slide .img {
        height: 3.68rem;
    }

    .Honor .out .swiper-slide i {
        margin-top: 0.27rem;
        margin-bottom: 0.39rem;
    }

    .Honor .out .swiper-slide span {
        font-size: 0.2rem;
    }





    .Honor .swiper-button-next:after,
    .Honor .swiper-button-prev:after {
        color: #333333;
        font-size: 20px;
    }

    .Products_page {
        margin: 1rem 0px;
        margin-bottom: 0px;
    }

    .Prod_public_left {
        width: 100%;
    }

    .Products_page .right {
        width: 100%;
        margin-top: 0.4rem;
    }

    .Prod_public_left .title {
        height: 1.2rem;
    }

    .Prod_public_left .title h5 {
        font-size: 0.23rem;
    }

    .Prod_public_left .title span {
        font-size: 0.16rem;
        margin-top: 0.1rem;
    }

    .Prod_public_left .Prod_list .tiem_title {
        height: 0.71rem;
        padding: 0px 0.27rem 0px 0.36rem;
    }

    .Prod_public_left .Prod_list .tiem_title a {
        font-size: 0.17rem;
    }

    .Prod_public_left .Prod_list .I_box {
        width: 0.14rem;
        height: 0.14rem;
    }

    .Prod_public_left .Prod_list .I_box i {
        height: 0.02rem;
    }

    .Prod_public_left .Prod_list .tiem_box .tiem_box_li {
        padding: 0px 0.28rem 0px 0.41rem;
    }

    .Prod_public_left .Prod_list .tiem_box a {
        height: 0.6rem;
        font-size: 0.17rem;
    }

    .Prod_public_left .Prod_list .I_box i:nth-child(2) {
        width: 0.02rem;
    }

    .Products_page .right .Prod_list {
        justify-content: space-between;
    }

    .Products_page .right .Prod_list .box {
        width: 48%;
        margin-right: 0px;
        padding: 0.3rem 0.27rem 0.21rem 0.27rem;
        margin-bottom: 0.36rem;
    }

    .Products_page .right .Prod_list .box .title span {
        font-size: 0.24rem;
    }

    .Products_page .right .Prod_list .box .title h5 {
        font-size: 0.24rem;
    }

    .Products_page .right .Prod_list .box .img {
        width: 100%;
        margin: 0.28rem 0px;
        height: 2.56rem;
    }

    .Products_page .right .Prod_list .box p {
        font-size: 0.16rem;
    }

    .Products_page .right .Prod_list .box p img {
        margin-left: 0.08rem;
        height: 0.11rem;
    }

    .public_page {
        margin-top: 0.67rem;
        margin-bottom: 1rem;
    }

    .public_page .Next_page_Previous_page {
        width: 0.66rem;
        height: 0.41rem;
        border-radius: 0.02rem;
        font-size: 0.16rem;
        margin: 0px 0.1rem;
    }

    .public_page .page {
        width: 0.41rem;
        height: 0.41rem;
        border-radius: 0.02rem;
        margin: 0px 0.1rem;
        font-size: 0.15rem;
    }

    .public_page span {
        width: 0.49rem;
        height: 0.41rem;
        border-radius: 0.02rem;
        font-size: 0.16rem;
        margin-right: 0.1rem;
    }

    .Prid_Tap {
        margin-top: 0.42rem;
        margin-bottom: 0.4rem;
    }

    .Prid_Tap .out a span {
        font-size: 0.16rem;
        margin-right: 0.16rem;
    }

    .Prid_Tap .out a img {
        height: 0.06rem;
        margin-right: 0.13rem;
    }

    .Prod_xq_page .out .left {
        width: 100%;
    }

    .Prod_xq_page .out .right {
        width: 100%;
    }

    .Prod_xq_page .out .left .Prod_swiper {
        height: 3.8rem;
    }

    .Prod_xq_page .out .left .Prod_swiper2_box {
        height: 1.25rem;
    }

    .Prod_xq_page .out .left .Prod_swiper2_box .swiper-slide-thumb-active {
        border: 0.02rem solid #1656BF;
    }

    .Prod_xq_page .out .left .swiper-button-next:after,
    .Prod_xq_page .out .left .swiper-button-prev:after {
        font-size: 0.18rem;
    }

    .Prod_xq_page .out .right {
        margin-top: 0.4rem;
    }

    .Prod_xq_page .out .right h5 {
        font-size: 0.43rem;
    }

    .Prod_xq_page .out .right i {
        width: 100%;
        height: 1px;
        margin: 0.49rem 0px;
    }

    .Prod_xq_page .out .right p {
        font-size: 0.24rem;
    }

    .Prod_xq_page .out .right a {
        width: 1.73rem;
        height: 0.56rem;
        box-shadow: 0px 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.08);
        border-radius: 0.41rem;
        font-size: 0.18rem;
        margin-top: 0.4rem;
    }

    .Prod_xq_page .text_out {
        padding: 0.6rem 0.33rem 0.9rem 0.33rem;
        border-radius: 0.21rem;
        margin-top: 0.67rem;
        margin-bottom: 0.74rem;
    }

    .Prod_xq_page .text_out .box .title {
        padding-bottom: 0.35rem;
        margin-bottom: 0.35rem;
    }

    .Prod_xq_page .text_out .box .title img {
        height: 0.29rem;
        margin-right: 0.19rem;
    }

    .Prod_xq_page .text_out .box .title h5 {
        font-size: 0.28rem;
    }

    .Prod_xq_page .text_out .box .txt p {
        font-size: 0.16rem;
    }

    .Prod_xq_page .text_out .box .txt p span {
        font-size: 0.16rem;
    }

    .Prod_xq_page .text_out .box .txt {
        margin-bottom: 0.6rem;
    }

    .News_page .News_out_1 {
        border-radius: 0.2rem;
        height: auto;
        margin-top: 1rem;
        /* display: none; */
    }

    .News_page .swiper-slide .left {
        width: 100%;
        padding: 0.4rem 0.5rem 0.4rem 0.5rem;
    }

    .News_page .swiper-slide .right {
        width: 100%;
    }

    .News_page .swiper-slide a {
        flex-wrap: wrap;
    }

    .News_page .swiper-slide .left h5 {
        font-size: 0.34rem;
        margin-bottom: 0.4rem;
    }

    .News_page .swiper-slide .left p {
        font-size: 0.18rem;
    }

    .News_page .swiper-slide .left span {
        width: 1.7rem;
        height: 0.56rem;
        border-radius: 0.4rem;
        font-size: 0.18rem;
        margin-top: 0.63rem;
    }

    .News_page .out {
        margin-top: 1rem;
        justify-content: space-between;
    }

    .News_page .out .box {
        width: 48%;
        margin-right: 0%;
        padding-top: 0.3rem;
        border-top: 0.02rem solid #E7E7E7;
        margin-bottom: 0.6rem;
    }

    .News_page .out .box .img {
        height: 2.86rem;
    }

    .News_page .out .box .txt {
        padding: 0.3rem 0.2rem 0px 0.2rem;
    }

    .News_page .out .box .txt h5 {
        font-size: 0.23rem;
    }

    .News_page .out .box .txt .tiem_box {
        margin-top: 0.7rem;
    }

    .News_page .out .box .txt .tiem_box span {
        font-size: 0.18rem;
        margin-right: 0.16rem;
    }

    .News_page .out .box .txt .tiem_box img {
        height: 0.11rem;
        margin-left: 0.16rem;
    }

    .News_page .out .box .txt .tiem_box b {
        font-size: 0.28rem;
        margin-right: 0.07rem;
    }

    .News_page .out .box .txt .tiem_box p {
        font-size: 0.19rem;
    }

    .News_xq_page {
        margin-bottom: 0px;
    }

    .News_xq_page .public {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
        margin-top: 0px;
    }

    .News_xq_page .public .out {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        padding-top: 0.5rem;
        padding-bottom: 0.3rem;
    }

    .News_xq_page .public .out .title {
        margin-bottom: 0.3rem;
    }

    .News_xq_page .public .out .title h5 {
        font-size: 0.36rem;
        margin-bottom: 0.1rem;
    }

    .News_xq_page .public .out .title span {
        font-size: 0.14rem;
    }

    .News_xq_page .public .out .text p {
        font-size: 0.20rem !important;
    }

    .News_xq_page .public .out .text p span {
        font-size: 0.2rem !important;
    }

    .News_xq_page .public .out .but_box {
        margin-top: 0.3rem;
    }

    .News_xq_page .public .out .but_box .box span {
        font-size: 0.14rem;
        margin-right: 0.1rem;
        margin-left: 0.1rem;
    }

    .News_xq_page .public .out .but_box .box a {
        font-size: 0.14rem;
    }

    .Application {
        margin: 1rem 0px;
    }

    .Application .out .box {
        margin-bottom: 0.81rem;
        flex-wrap: wrap;
    }

    .Application .out .box .left {
        width: 100%;
    }

    .Application .out .box .right {
        width: 100%;
        margin-top: 0.4rem;
    }

    .Application .out .box .right h5 {
        font-size: 0.42rem;
    }

    .Application .out .box .right i {
        width: 0.92rem;
        height: 0.04rem;
        margin: 0.4rem 0px 0.71rem 0px;
    }

    .Application .out .box .right p {
        font-size: 0.2rem;
    }

    .Service_1 .out .box a {
        height: 0.9rem;
    }

    .Service_1 .out .box .text {
        padding: 0.3rem 0.2rem;
        margin-bottom: 0.1rem;
    }

    .Service_1 .out .box .text p {
        font-size: 0.16rem;
    }

    .Service_1 .out .box a span {
        font-size: 0.24rem;
    }

    .Service_1 .out .box a img {
        width: 0.28rem;
        height: 0.28rem;
    }

    .Contact_Page .out .box {
        width: 50%;
        box-sizing: border-box;
    }



    .Contact_Page {
        margin: 1rem 0px;
    }

    .Contact_Page .out {
        margin-top: 0.56rem;
        flex-wrap: wrap;
    }

    .Contact_Page .out .box {
        height: 3.02rem;
    }

    .Contact_Page .out .box .img {
        width: 0.78rem;
        height: 0.78rem;
        margin-bottom: 0.26rem;
    }

    .Contact_Page .out .box h5 {
        font-size: 0.22rem;
    }

    .Contact_Page .out .box i {
        margin: 0.22rem 0px;
        width: 0.39rem;
        height: 0.04rem;
        background: #005199;
    }

    .Contact_Page .out .box span {
        font-size: 0.18rem;
        padding: 0px 0.3rem;
        box-sizing: border-box;
    }

    .Feedback {
        padding-top: 0.7rem;
        padding-bottom: 0.97rem;
    }

    .Feedback .out .title h5 {
        font-size: 0.36rem;
    }

    .Feedback .out .title i {
        font-size: 0.16rem;
        margin: 0px 0.2rem;
    }

    .Feedback .out .title span {
        font-size: 0.17rem;
    }

    .Feedback .out .title {
        margin-bottom: 0.5rem;
    }

    .Feedback .out input {
        height: 0.46rem;
        border-radius: 0.04rem;
        font-size: 0.14rem;
        padding: 0px 0.12rem;
        margin-bottom: 0.2rem;
    }

    .Feedback .out textarea {
        width: 100%;
        height: 2.14rem;
        font-size: 0.14rem;
        padding: 0.18rem 0.21rem 0.18rem 0.21rem;
    }

    .Feedback .out button {
        width: 4.77rem;
        height: 0.67rem;
        border-radius: 0.33rem;
        font-size: 0.22rem;
        margin-top: 0.95rem;
    }

    .CAPTCHA {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 0.3rem;
    }

    .CAPTCHA input {
        margin-bottom: 0px !important;
        margin-right: 0.1rem !important;
    }

    .CAPTCHA img {
        width: 1.2rem;
        height: 0.48rem;
        display: block;
    }

    .Partner .out {
        flex-wrap: wrap;
    }

    .Partner .out .left {
        width: 100%;
    }

    .Partner .out .right {
        width: 100%;
        margin-top: 0.4rem;
    }

    .Partner .out .left h5 {
        font-size: 0.4rem;
    }

    .Partner .out .left i {
        width: 1rem;
        height: 0.05rem;
        margin-top: 0.28rem;
        margin-bottom: 0.38rem;
    }

    .Partner .out .left p {
        font-size: 0.18rem;
        margin-bottom: 0.27rem;
    }

    .Partner .out .left a img {
        margin-left: 0.11rem;
        height: 0.2rem;
    }

    .Partner {
        margin-bottom: 0.95rem;
    }

    .Culture {
        padding: 0.6rem 0px;

    }

    .Culture .out {
        flex-wrap: wrap;
        padding: 0px 2%;
        box-sizing: border-box;
    }

    .Culture .out .left {
        width: 100%;
        padding-left: 0px;
    }

    .Culture .out .right {
        width: 100%;
    }

    .Culture .out .left .title h5 {
        font-size: 0.42rem;
        margin-bottom: 0.2rem;
    }

    .Culture .out .left .title span {
        font-size: 0.18rem;
    }

    .Culture .out .left .title {
        margin-bottom: 0.4rem;
    }

    .Culture .out .left .text_item {
        padding: 0.3rem 0px;
    }

    .Culture .out .left .text_item h5 {
        width: 1rem;
        padding-right: 0.06rem;
        font-size: 0.2rem;
    }

    .Culture .out .left .text_item .txt p {
        font-size: 0.17rem;
        margin-bottom: 0.1rem;
    }

    .Characteristics_and_advantages {
        margin-top: 0.3rem;
    }

    .Characteristics_and_advantages h5 {
        font-size: 0.2rem;
        margin-bottom: 0.15rem;
    }

    .Characteristics_and_advantages .Char_list_item {
        margin-bottom: 0.15rem;
    }

    .Characteristics_and_advantages .Char_list_item span {
        font-size: 0.18rem;
    }

    .Characteristics_and_advantages .Char_list_item i {
        width: 0.07rem;
        height: 0.07rem;
        margin-right: 0.09rem;
    }

    .development_swiper2_out .swiper-button-next,
    .development_swiper2_out .swiper-button-prev {
        display: none;
    }

    .Xptc_pages {
        padding-top: 0.6rem;
        padding-bottom: 0.9rem;
    }

    .Xptc_pages .Xptc_out {
        flex-wrap: wrap;
    }

    .Xptc_pages .Xptc_out .left {
        width: 100%;
        border-radius: 0.12rem;
        padding: 0.3rem 0px 0px 0px;
    }

    .Xptc_pages .Xptc_out .left .title h5 {
        font-size: 0.2rem;
        margin-bottom: 0.05rem;
    }

    .Xptc_pages .Xptc_out .left .title span {
        font-size: 0.17rem;
    }

    .Xptc_pages .Xptc_out .left .title {
        margin-bottom: 0.25rem;
        padding: 0px 0.3rem 0px 0.2rem;
    }

    .Xptc_pages .Xptc_out .left .list {
        height: 5.7rem;
        padding: 0px 0.3rem 0px 0.2rem;
        margin-bottom: 0.3rem;
    }

    .Xptc_pages .Xptc_out .left .link_bou {
        border-radius: 0.1rem;
        height: 0.54rem;
    }

    .Xptc_pages .Xptc_out .left .link_bou a {
        font-size: 0.17rem;
    }

    .Xptc_pages .Xptc_out .left .list .item {
        padding: 0.2rem 0px;
    }

    .Xptc_pages .Xptc_out .left .list .item .box .item_box a {
        font-size: 0.16rem;
    }

    .Xptc_pages .Xptc_out .right {
        width: 100%;
        margin-top: 0.4rem;
        justify-content: space-between;
    }

    .Xptc_pages .Xptc_out .left .list .item .tit,
    .Xptc_pages .Xptc_out .left .list .item .box h6 a {
        font-size: 0.18rem;
        margin-bottom: 0.05rem;
    }

    .Xptc_pages .Xptc_out .right .box {
        width: 48%;
        margin-bottom: 0.4rem;
        margin-right: 0px;
        box-shadow: 0px 0px 0.1rem 0.01rem #00000027;
    }

    .Xptc_pages .Xptc_out .right .box .img .title h5 {
        font-size: 0.2rem;
    }

    .Xptc_pages .Xptc_out .right .box .img {
        width: 100%;
        padding: 0.4rem 0.2rem 0.3rem 0.3rem;
        box-sizing: border-box;
        border-radius: 0.1rem 0.1rem 0px 0px;
        box-sizing: border-box;
    }

    .Xptc_pages .Xptc_out .right .box .txt {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
        background: #2D69CB;
        font-size: 0.17rem;
        height: 0.54rem;
        border-radius: 0.05rem;
        margin-top: -0.1rem;
    }

    .Xptc_pages .Xptc_out .left .list {
        height: auto ;
        max-height: 5.7rem ;
    }

    .Xptc_pages .Xptc_out .left .list::-webkit-scrollbar,
    .Xptc_pages .Xptc_out .left .list::-webkit-scrollbar {
        width: 0.16rem;
        height: 0.16rem;
        background: transparent;
    }

    .Xptc_pages .Xptc_out .left .list::-webkit-scrollbar-thumb,
    .Xptc_pages .Xptc_out .left .list::-webkit-scrollbar-thumb {
        border-radius: 0.08rem;
        border: 0.04rem solid transparent;
        background-clip: content-box;
        background-color: #D8D8D8;
    }

    #xptc .banner {
        margin-top: 0rem ;
    }

    .xptc_details_Top {
        padding: 0.8rem 0px 0.6rem  0px;
    }

    .xptc_details_Top .out .left .title h5 {
        font-size: 0.46rem ;
        margin-bottom: 0.05rem ;
    }

    .xptc_details_Top .out .left .title span {
        font-size: 0.17rem ;
    }

    .xptc_details_Top .out .left p {
        font-size: 0.18rem ;
        width: 100% ;
    }

    .xptc_details_Top .out {
        flex-wrap: wrap ;
    }

    .xptc_details_Top .out .left {
        width: 100% ;
    }

    .xptc_details_Top .out .right {
        width: 100% ;
        flex-wrap: wrap ;
    }

    .xptc_details_Top .out .right .img {
        width: 100% ;
    }

    .xptc_details_Top .out .right a {
        width: 1.76rem ;
        height: 0.43rem ;
        background: #3074E4;
        color: #FFF;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.15rem ;
        flex: none;
        margin: 0 auto ;
    }

    .xptc_details_title h5 {
        font-size: 0.36rem ;
    }

    .xptc_details_title h5 span {
        font-size: 0.2rem ;
    }

    .xptc_details_title .icon_txt i {
        width: 0.18rem ;
        height: 0.18rem ;
    }

    .xptc_details_title .icon_txt {
        width: 0.27rem ;
        height: 0.27rem ;
        position: relative;
        margin-right: 0.15rem ;
    } 

    .xptc_details_title {
        margin-top: 0.4rem ;
    }

    .xptc_details_box {
        margin-bottom: 0.3rem ;
    }

    .xptc_details_box .text {
        margin: 0.3rem 0px 0.2rem  0px;
    }

    .xptc_details_box .text p {
        font-size: 0.18rem ;
    }

    .xptc_details_box2 .out .icon {
        display: none ;
    }

    .xptc_details_box2 .out {
        flex-wrap: wrap ;
    }

    .xptc_details_box2 .out .box {
        width: 100% ;
    }

    .xptc_details_box2 .out .box .list {
        margin-top: 0.4rem ;
    }

    .xptc_details_box2 .out .box .list .item {
        height: 0.64rem ;

        border: 0.01rem solid #2D69CB;
        box-sizing: border-box;
        color: #333;
        font-size: 0.15rem ;
        border-radius: 0.1rem ;
        position: relative;
        margin-bottom: 0.3rem ;
    } 

    .xptc_details_box2 .out .box .list .item::after {
        width: 0.23rem;
        height: 0.3rem ;
        background: #fff;
        transform: rotate(32deg);
        position: absolute;
        right: -0.02rem;
        bottom: -0.02rem;
        content: ' ';
        z-index: 1;
    }

    .xptc_details_box2 .out .box .list .item span {
        font-size: 0.16rem ;
    }

    .xptc_details_box2 .out .box .list .item img {
        width: 0.1rem ;
        height: 0.18rem ;
    }

    .xptc_details_box3 .txt {
        margin-top: 0.4rem ;
    }

    .xptc_details_box3 .txt p {
        font-size: 0.15rem !important;
    }

    .xptc_details_box3 .txt span {
        font-size: 0.15rem !important;
    }

    .xptc_details_box4 .txt {
        margin-top: 0.5rem ;
    }

    .xptc_details_box4 {
        padding-bottom: 0.7rem ;
    }

    .xptc_details_Top .out .right {
        margin-top: 0.4rem ;
    }

    .xptc_details_Top .out .right .img {
        margin-bottom: 0.4rem ;
    }

    .xptc_details_Top .out .right .img img {
        width: 60%;
        display: block ;
        margin: 0 auto ;
    }

    .xptc_jishucanshu .out .left {
        width: 1.7rem ;
        text-align: center ;
    }

}



@media (min-width:360px) and (max-width:768px) {
    html {
        font-size: 52px;
    }

}

@media (min-width:769px) and (max-width:930px) {
    html {
        font-size: 50px;
    }

}

@media (min-width:931px) and (max-width:1099px) {
    html {
        font-size: 60px;
    }
}

@media (min-width:1100px) and (max-width:1249px) {
    html {
        font-size: 70px;
    }
}

@media (min-width:1250px) and (max-width:1399px) {
    html {
        font-size: 80px;
    }
}

@media (min-width:1400px) and (max-width:1699px) {
    html {
        font-size: 90px;
    }
}


@media (min-width:1700px) {
    html {
        font-size: 100px;
    }
}